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