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