From a8636fc60329c0a2c97c148c8881b0476b13eba2 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 09:03:31 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 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..d8f7f03 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,23 @@ +'use client' + +import { cn } from "@/lib/utils" + +interface InputProps extends React.InputHTMLAttributes { + error?: string +} + +export default function Input({ className, error, ...props }: InputProps) { + return ( +
+ + {error &&

{error}

} +
+ ) +} \ No newline at end of file