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