import Label from './Label'; interface TextInputProps { id: string type: string label: string required?: boolean disabled?: boolean placeholder?: string widthClass?: string value?: any onChange?: (event: React.ChangeEvent) => void } function TextInput({id, type, required, label, disabled, placeholder, widthClass='w-full', value, onChange}: TextInputProps) { return (
); } export default TextInput;