material-ui-pickers-fork
Version:
React components, that implements material design pickers for material-ui v1
14 lines (10 loc) • 311 B
TypeScript
import { ComponentClass, ReactNode } from 'react';
export interface DayWrapperProps {
children: ReactNode;
dayInCurrentMonth?: boolean,
disabled?: boolean;
onSelect: (value: any) => void;
value: any;
}
declare const DayWrapper: ComponentClass<DayWrapperProps>;
export default DayWrapper;