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