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 onFocus?: () => void } function TextInput({ id, type, required, label, disabled, placeholder, widthClass='w-full', value, onChange, onFocus }: TextInputProps) { return (
); } export default TextInput;