From 470726049bb866baf2dcddb10ebc8e31c27e1968 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:25 +0000 Subject: [PATCH] Seed: photography template (19 files) --- src/components/ui/input.tsx | 19 +++++++++++++++++++ 1 file changed, 19 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..e2b0708 --- /dev/null +++ b/src/components/ui/input.tsx @@ -0,0 +1,19 @@ +import * as React from "react"; +import { cn } from "@/lib/utils"; + +export const Input = React.forwardRef>( + ({ className, type = "text", ...props }, ref) => ( + + ) +); +Input.displayName = "Input"; + +export default Input;