UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

20 lines (19 loc) 375 B
import { Direction, LineType, Alignment } from '../../typings'; import { TextProps } from '..'; /** * 分割线属性 */ export interface DividerProps extends TextProps { /** * 分割线方向 */ direction?: Direction; /** * 分割线变体 */ variant?: LineType; /** * 内容对齐方式 */ orientation?: Alignment; }