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