diff --git a/apps/www/src/lib/registry/default/ui/input/Input.vue b/apps/www/src/lib/registry/default/ui/input/Input.vue index 81140b40..a74cc32c 100644 --- a/apps/www/src/lib/registry/default/ui/input/Input.vue +++ b/apps/www/src/lib/registry/default/ui/input/Input.vue @@ -4,8 +4,8 @@ import { cn } from '@/lib/utils' import { useVModel } from '@vueuse/core' const props = defineProps<{ - defaultValue?: string | number - modelValue?: string | number + defaultValue?: string | number | File + modelValue?: string | number | File class?: HTMLAttributes['class'] }>()