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