input.tsx (797B)
1 import { cn } from "@/lib/utils" 2 import { ComponentProps, forwardRef } from "react" 3 4 const Input = forwardRef<HTMLInputElement, ComponentProps<"input">>( 5 ({ className, type, ...props }, ref) => { 6 return ( 7 <input 8 type={type} 9 className={cn( 10 "flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm", 11 className 12 )} 13 ref={ref} 14 {...props} 15 /> 16 ) 17 } 18 ) 19 Input.displayName = "Input" 20 21 export { Input }