You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
InternshipProject/node_modules/rc-picker/lib/panels/MonthPanel/index.d.ts

9 lines
392 B

/// <reference types="react" />
import type { MonthCellRender } from './MonthBody';
import type { PanelSharedProps } from '../../interface';
export declare type MonthPanelProps<DateType> = {
monthCellContentRender?: MonthCellRender<DateType>;
} & PanelSharedProps<DateType>;
declare function MonthPanel<DateType>(props: MonthPanelProps<DateType>): JSX.Element;
export default MonthPanel;