@opensig/opendesign
Version:
44 lines (43 loc) • 865 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const DividerVariantTypes = ["solid", "dashed", "dotted"];
const dividerProps = {
/**
* @zh-CN 分割线形状
* @en-US Divider shape
* @default 'solid'
*/
variant: {
type: String,
default: "solid"
},
/**
* @zh-CN 分割线方向
* @en-US Divider direction
* @default 'h'
*/
direction: {
type: String,
default: "h"
},
/**
* @zh-CN 分割线标签位置
* @en-US Divider label position
* @default 'center'
*/
labelPosition: {
type: String,
default: "center"
},
/**
* @zh-CN 是否使用深色
* @en-US Whether to use dark
* @default false
*/
darker: {
type: Boolean,
default: false
}
};
exports.DividerVariantTypes = DividerVariantTypes;
exports.dividerProps = dividerProps;