UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

24 lines (19 loc) 428 B
import * as React from 'react'; import { StandardProps } from '..'; export interface DividerProps extends StandardProps< React.HTMLAttributes<HTMLHRElement>, DividerClassKey > { absolute?: boolean; inset?: boolean; light?: boolean; } export type DividerClassKey = | 'root' | 'default' | 'inset' | 'light' | 'absolute' ; declare const Divider: React.ComponentType<DividerProps>; export default Divider;