import { CSSProperties, ReactNode } from 'react'; /** * @title Divider */ export interface DividerProps { children?: ReactNode; style?: CSSProperties; className?: string | string[]; /** * 标题设置children后title失效 * @defaultValue horizontal */ title?: ReactNode; /** * 分割线的类型,是水平还是竖直,分别对应 `horizontal` 和 `vertical` * @defaultValue horizontal */ direction?: 'horizontal' | 'vertical'; /** * 分割线文字的位置 * @defaultValue center */ position?: 'left' | 'right' | 'center'; /** * 是否是虚线 * @defaultValue false */ dashed?: boolean; }