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