import { forwardRef } from 'react' interface InputProps extends React.HTMLProps { label: string } export const Input = forwardRef((props, ref) => { const { label, name, ...rest } = props return ( <>
) })