UNPKG

447 BTypeScriptView Raw
1import * as React from 'react';
2export 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}
14declare const Divider: React.FC<DividerProps>;
15export default Divider;