UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

15 lines (14 loc) 505 B
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>;