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