UNPKG

ph-material-pickers

Version:

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

12 lines (11 loc) 353 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" | "selected", string>; export declare const Month: React.FC<MonthProps>; export default Month;