@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 540 B
TypeScript
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;
}