import Label from './Label'; interface TextInputProps extends Omit, 'className' | 'title'> { id?: string label?: string tooltip?: string dimensions?: string colorClass?: string singleRow?: boolean } function TextInput({ id, required, label, singleRow, tooltip, dimensions = 'w-full', colorClass = 'clr-input', ...props }: TextInputProps) { return (
{label &&
); } export default TextInput;