react-semantic-ui-datepickers
Version:
Datepickers built with Semantic UI for React and Dayzed
17 lines (16 loc) • 415 B
TypeScript
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;