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