UNPKG

tdesign-mobile-vue

Version:
46 lines (43 loc) 815 B
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ var props = { color: { type: [String, Object, Array], default: "" }, label: { type: [String, Boolean, Function], default: true }, percentage: { type: Number, default: 0 }, status: { type: String, validator: function validator(val) { if (!val) return true; return ["success", "error", "warning", "active"].includes(val); } }, strokeWidth: { type: [String, Number] }, theme: { type: String, default: "line", validator: function validator(val) { if (!val) return true; return ["line", "plump", "circle"].includes(val); } }, trackColor: { type: String, default: "" } }; export { props as default }; //# sourceMappingURL=props.js.map