From 14df9970610dbd090781bd8a1815697223b0d6c4 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:06:45 +0000 Subject: [PATCH] Update components/ui/input.tsx --- components/ui/input.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 components/ui/input.tsx diff --git a/components/ui/input.tsx b/components/ui/input.tsx new file mode 100644 index 0000000..9d631e7 --- /dev/null +++ b/components/ui/input.tsx @@ -0,0 +1,25 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +export interface InputProps + extends React.InputHTMLAttributes {} + +const Input = React.forwardRef( + ({ className, type, ...props }, ref) => { + return ( + + ); + }, +); +Input.displayName = "Input"; + +export { Input };