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