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