indproblr-react-datepicker
Version:
Flexible, Reusable, Mobile friendly DatePicker Component
12 lines (11 loc) • 324 B
TypeScript
import * as React from 'react';
interface IProps {
/** panel display today string */
today: string;
/** today panel click event */
onClick?: () => void;
/** today panel show or hide */
show?: boolean;
}
declare const TodayPanel: React.FunctionComponent<IProps>;
export default TodayPanel;