diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx new file mode 100644 index 0000000..3055914 --- /dev/null +++ b/src/components/ui/input.tsx @@ -0,0 +1,25 @@ +import { cn } from "@/lib/utils"; +import * as React from "react"; + +const Input = React.forwardRef>( + ({ className, type, ...props }, ref) => { + return ( + + ); + } +); +Input.displayName = "Input"; + +export { Input };