From a0b3dcef8242e07635f6d7b6299fe9a4ae7e2baf Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:21 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/ui/Input.tsx 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