import clsx from 'clsx' import {forwardRef, Ref} from 'react' /** Text input. Wraps html `` */ export const Input = forwardRef( ( props: { error?: boolean } & JSX.IntrinsicElements['input'], ref: Ref, ) => { const {error, className, ...rest} = props return ( ) }, )