@activelylearn/material-ui
Version:
Material-UI's workspace package
17 lines (12 loc) • 442 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface DividerProps
extends StandardProps<React.HTMLAttributes<HTMLHRElement>, DividerClassKey> {
absolute?: boolean;
component?: React.ReactType<DividerProps>;
inset?: boolean;
light?: boolean;
}
export type DividerClassKey = 'root' | 'absolute' | 'inset' | 'light';
declare const Divider: React.ComponentType<DividerProps>;
export default Divider;