import { FIELD_TYPES, IFormField } from '@/constants/interface/field' import { IUserSignInPayload } from '@/stores/types' export const SIGNIN_FIELDS: IFormField[] = [ { key: 'email', label: 'auth.email', fieldType: FIELD_TYPES.input, isRequire: true, disabled: false, componentProps: { autoCapitalize: 'none', }, }, { key: 'password', label: 'auth.password', fieldType: FIELD_TYPES.input, isRequire: true, disabled: false, componentProps: { secureTextEntry: true, autoCapitalize: 'none', }, }, ]