mh-rn-component
Version:
16 lines (15 loc) • 378 B
JavaScript
/**
* 按钮类型背景颜色的type
*/
export let ButtonType;
/**
* Field ref的ts类型
*/
(function (ButtonType) {
ButtonType["default"] = "#ffffff";
ButtonType["primary"] = "#1989fa";
ButtonType["success"] = "#07c160";
ButtonType["warning"] = "#ee0a24";
ButtonType["danger"] = "#ff976a";
})(ButtonType || (ButtonType = {}));
//# sourceMappingURL=types.js.map