UNPKG

@material-ui/pickers

Version:

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

12 lines (11 loc) 376 B
import * as React from 'react'; export interface MonthProps { children: React.ReactNode; disabled?: boolean; onSelect: (value: any) => void; selected?: boolean; value: any; } export declare const useStyles: (props?: any) => Record<"root" | "monthSelected" | "monthDisabled", string>; export declare const Month: React.FC<MonthProps>; export default Month;