fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
8 lines (7 loc) • 393 B
TypeScript
import React from 'react';
import { CalendarProps } from './type';
declare const Calendar: {
({ as, className, mode: modeFromProps, value: valueFromProps, format, isShowWeekendDefault, firstDayOfWeek, week, controllerConfig, onMonthChange, ...props }: CalendarProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
export default Calendar;