import { FormControl, FormControlProps, FormLabel, Input, InputProps, } from '@chakra-ui/react'; import { ChangeEvent } from 'react'; interface IAIInputProps extends InputProps { label?: string; value?: string; size?: string; onChange?: (e: ChangeEvent) => void; formControlProps?: Omit; } export default function IAIInput(props: IAIInputProps) { const { label = '', isDisabled = false, isInvalid, formControlProps, ...rest } = props; return ( {label !== '' && {label}} ); }