UNPKG

react-semantic-ui-datepickers

Version:
17 lines (16 loc) 415 B
import React from 'react'; import './cell.css'; declare type CalendarCellProps = { end?: boolean; hovered?: boolean; inRange?: boolean; nextMonth?: boolean; prevMonth?: boolean; selectable?: boolean; selected?: boolean; start?: boolean; today?: boolean; title?: string; }; declare const CalendarCell: React.FC<CalendarCellProps>; export default CalendarCell;