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