From 9aa99544a852fa70ac63007e1f7e2dc5b8c66280 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:57 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/input.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 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..7db5241 --- /dev/null +++ b/src/components/ui/input.tsx @@ -0,0 +1,22 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +const Input = React.forwardRef>( + ({ className, type, ...props }, ref) => { + return ( + + ); + }, +); +Input.displayName = "Input"; + +export { Input };