UNPKG

ph-material-pickers

Version:

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

11 lines (10 loc) 403 B
import * as React from 'react'; interface FadeTransitionProps { transKey: React.Key; className?: string; reduceAnimations: boolean; children: React.ReactElement; } export declare const useStyles: (props?: any) => Record<"root" | "fadeEnter" | "fadeEnterActive" | "fadeExit" | "fadeExitActive", string>; export declare const FadeTransitionGroup: React.FC<FadeTransitionProps>; export {};