17 lines
454 B
TypeScript
17 lines
454 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' | 'default' | 'inset' | 'light' | 'absolute';
|
|
|
|
declare const Divider: React.ComponentType<DividerProps>;
|
|
|
|
export default Divider;
|