UNPKG

@wulperstudio/cms

Version:
13 lines (12 loc) 540 B
import { DatePickerProps, PickerValidDate } from '@mui/x-date-pickers'; import { ReactNode } from 'react'; import { InputErrorProps, InputSizeType, InputVariantType } from '../../types'; export interface InputDatePickerLabelOutPropsModel<TDate extends PickerValidDate> extends Omit<DatePickerProps<TDate>, 'renderInput'>, InputErrorProps { label?: string; id?: string; variant?: InputVariantType; size?: InputSizeType; backgroundColor?: string; disabledHoverVariantOutAndFlo?: boolean; helperNode?: ReactNode; }