diff --git a/src/components/ui/Input.tsx b/src/components/ui/Input.tsx new file mode 100644 index 0000000..67033ef --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,21 @@ +'use client' + +import { cn } from "@/lib/utils" + +interface InputProps extends React.InputHTMLAttributes { + error?: boolean +} + +export default function Input({ className, error, ...props }: InputProps) { + return ( + + ) +} \ No newline at end of file