import * as React from "react"; import { cn } from "@/lib/style"; export type InputProps = React.InputHTMLAttributes; export const Input = React.forwardRef( ({ className, ...props }, ref) => ( ) ); Input.displayName = "Input";