From 5b7f9c9af639af9d73b05ad218b19312b8a275cc Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 17:42:09 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 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..cde0795 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,22 @@ +'use client' + +import { cn } from "@/lib/utils" + +interface InputProps extends React.InputHTMLAttributes { + error?: string +} + +export default function Input({ className, error, ...props }: InputProps) { + return ( + + ) +} \ No newline at end of file