diff --git a/apps/client/src/components/inputs/Input.tsx b/apps/client/src/components/inputs/Input.tsx index e94866a..b605664 100644 --- a/apps/client/src/components/inputs/Input.tsx +++ b/apps/client/src/components/inputs/Input.tsx @@ -49,10 +49,13 @@ interface InputProps extends VariantProps, InputWrapperProps { icon?: LucideIcon; className?: string; placeholder?: string; + onChange?: (e: React.ChangeEvent) => void; + maxLength?: number; + value?: string; } const Input = forwardRef( - ({ icon, label, description, containerClassName, className, placeholder, ...props }, ref) => { + ({ icon, label, description, containerClassName, className, ...props }, ref) => { const Icon = icon; return ( ( description={description} containerClassName={containerClassName} > - + {Icon && ( )} diff --git a/apps/client/src/components/ui/tabs.tsx b/apps/client/src/components/ui/Tabs.tsx similarity index 100% rename from apps/client/src/components/ui/tabs.tsx rename to apps/client/src/components/ui/Tabs.tsx