import { type ComponentProps } from 'react' import { cn } from '@/lib' export function Input({ type = 'text', className, ...props }: ComponentProps<'input'>) { return ( ) }