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