From d42cc66a7824f19da0cde9a5174d3a465a9a971b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:59:59 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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..9a47712 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,28 @@ +'use client' + +import { cn } from "@/lib/utils" +import { InputHTMLAttributes, forwardRef } from "react" + +interface InputProps extends InputHTMLAttributes { + error?: boolean +} + +const Input = forwardRef( + ({ className, error, type = "text", ...props }, ref) => { + return ( + + ) + } +) +Input.displayName = "Input" + +export default Input \ No newline at end of file