- import { IBaseProps } from '../_util/base';
- export interface IDividerProps extends IBaseProps {
- lineColor: string;
- lineHeight: number;
- lineType: 'solid' | 'dashed' | 'dotted';
- lineWidth: number;
- text: string;
- textStyle: string;
- textClassName: string;
- textPosition: 'left' | 'center' | 'right';
- direction: 'horizontal' | 'vertical';
- }
- export declare const DividerDefaultProps: Partial<IDividerProps>;
- export declare const DividerFunctionalProps: Partial<IDividerProps>;
|