@gem-mine/rmc-calendar
Version:
React Mobile Calendar Component(web and react-native)
17 lines (16 loc) • 463 B
TypeScript
import * as React from 'react';
import { Models } from './DataTypes';
export interface PropsType {
headerTitle?: string;
locale?: Models.Locale;
showClear?: boolean;
onClear?: () => void;
onComeToday?: () => void;
onSelectMonth?: () => void;
clearIcon?: React.ReactNode;
}
export default class Header extends React.PureComponent<PropsType, {}> {
onComeToday: () => void;
onSelectMonth: () => void;
render(): JSX.Element;
}