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