1 | import * as React from 'react';
|
2 | export interface DividerProps {
|
3 | prefixCls?: string;
|
4 | type?: 'horizontal' | 'vertical';
|
5 | orientation?: 'left' | 'right' | 'center';
|
6 | orientationMargin?: string | number;
|
7 | className?: string;
|
8 | rootClassName?: string;
|
9 | children?: React.ReactNode;
|
10 | dashed?: boolean;
|
11 | style?: React.CSSProperties;
|
12 | plain?: boolean;
|
13 | }
|
14 | declare const Divider: React.FC<DividerProps>;
|
15 | export default Divider;
|