UNPKG

@material-ui/pickers

Version:

React components, that implements material design pickers for material-ui v4

11 lines (10 loc) 289 B
import * as React from 'react'; export interface DayWrapperProps { value: any; children: React.ReactNode; dayInCurrentMonth?: boolean; disabled?: boolean; onSelect: (value: any) => void; } declare const DayWrapper: React.FC<DayWrapperProps>; export default DayWrapper;