24 lines
428 B
TypeScript
24 lines
428 B
TypeScript
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;
|