From 47613f92cbe4adef8dfbd9b9ed78da2d0f97db26 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 19:05:22 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..8187b2b --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,24 @@ +'use client' + +import React from 'react' +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