From 6f6894c1b480c58979dd19c503b9b9c4bd186fd7 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:25:13 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..1cd0dc8 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,30 @@ +'use client' + +import { cn } from "@/lib/utils" +import { InputHTMLAttributes, forwardRef } from "react" + +interface InputProps extends InputHTMLAttributes { + error?: string +} + +const Input = forwardRef( + ({ className, error, ...props }, ref) => { + return ( + + ) + } +) + +Input.displayName = "Input" + +export default Input \ No newline at end of file