@coolbox/yuqing
Version:
Icons for Coolbox
1,260 lines • 1 MB
JavaScript
import Vue from "vue";
const Biaoji$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Biaoji-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3s = /* @__PURE__ */ Vue.extend(Biaoji$1);
var render$3s = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 16", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "data-follow-fill": "currentColor", "fill-rule": "evenodd", "fill": _vm._fill } }, [_c("path", { attrs: { "fill-opacity": "0.01", "d": "M0 0h16v16H0z" } }), _c("path", { attrs: { "fill-rule": "nonzero", "d": "M2.667 1.333h10.666c.369 0 .667.299.667.667v12.85a.334.334 0 0 1-.47.305L8 12.687l-5.53 2.468A.333.333 0 0 1 2 14.85V2c0-.368.298-.667.667-.667Zm10 11.977V2.667H3.333V13.31L8 11.227l4.667 2.083ZM8 9l-1.96 1.03.375-2.181L4.83 6.303l2.19-.318L8 4l.98 1.985 2.19.318L9.585 7.85l.374 2.181L8 9Z" } })])])])]);
};
var staticRenderFns$3s = [];
function normalizeComponent(scriptExports, render2, staticRenderFns2, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
if (render2) {
options.render = render2;
options.staticRenderFns = staticRenderFns2;
options._compiled = true;
}
if (functionalTemplate) {
options.functional = true;
}
if (scopeId) {
options._scopeId = "data-v-" + scopeId;
}
var hook;
if (moduleIdentifier) {
hook = function(context) {
context = context || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext;
if (!context && typeof __VUE_SSR_CONTEXT__ !== "undefined") {
context = __VUE_SSR_CONTEXT__;
}
if (injectStyles) {
injectStyles.call(this, context);
}
if (context && context._registeredComponents) {
context._registeredComponents.add(moduleIdentifier);
}
};
options._ssrRegister = hook;
} else if (injectStyles) {
hook = shadowMode ? function() {
injectStyles.call(this, (options.functional ? this.parent : this).$root.$options.shadowRoot);
} : injectStyles;
}
if (hook) {
if (options.functional) {
options._injectStyles = hook;
var originalRender = options.render;
options.render = function renderWithStyleInjection(h, context) {
hook.call(context);
return originalRender(h, context);
};
} else {
var existing = options.beforeCreate;
options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
}
}
return {
exports: scriptExports,
options
};
}
const __cssModules$3s = {};
var __component__$3s = /* @__PURE__ */ normalizeComponent(__vue2_script$3s, render$3s, staticRenderFns$3s, false, __vue2_injectStyles$3s, null, null, null);
function __vue2_injectStyles$3s(context) {
for (let o in __cssModules$3s) {
this[o] = __cssModules$3s[o];
}
}
var Biaoji = /* @__PURE__ */ function() {
return __component__$3s.exports;
}();
const Liebiao$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Liebiao-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3r = /* @__PURE__ */ Vue.extend(Liebiao$1);
var render$3r = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 16", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill": "none", "fill-rule": "evenodd" } }, [_c("path", { attrs: { "d": "M0 0h16v16H0z" } }), _c("path", { attrs: { "data-follow-fill": "currentColor", "d": "M5.333 2.667H14V4H5.333V2.667ZM2 2.333h2v2H2v-2ZM2 7h2v2H2V7Zm0 4.667h2v2H2v-2Zm3.333-4.334H14v1.334H5.333V7.333Zm0 4.667H14v1.333H5.333V12Z", "fill-rule": "nonzero", "fill": _vm._fill } })])])])]);
};
var staticRenderFns$3r = [];
const __cssModules$3r = {};
var __component__$3r = /* @__PURE__ */ normalizeComponent(__vue2_script$3r, render$3r, staticRenderFns$3r, false, __vue2_injectStyles$3r, null, null, null);
function __vue2_injectStyles$3r(context) {
for (let o in __cssModules$3r) {
this[o] = __cssModules$3r[o];
}
}
var Liebiao = /* @__PURE__ */ function() {
return __component__$3r.exports;
}();
const Gongjuxiang$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Gongjuxiang-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3q = /* @__PURE__ */ Vue.extend(Gongjuxiang$1);
var render$3q = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 16", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill": "none", "fill-rule": "evenodd" } }, [_c("path", { attrs: { "d": "M0 0h16v16H0z" } }), _c("path", { attrs: { "data-follow-fill": "currentColor", "d": "m2 7.193 4.666 1.988v1.243c0 .026.022.046.047.046h2.574c.025 0 .047-.02.047-.047l-.001-1.019L14 7.639V13.4a.6.6 0 0 1-.6.6H2.6a.6.6 0 0 1-.6-.6V7.193ZM10.64 2c.26 0 .471.21.471.47V4.4H13.4a.6.6 0 0 1 .6.6v1.892L9.333 8.657v-.492a.047.047 0 0 0-.046-.048H6.713a.047.047 0 0 0-.046.048v.286L2 6.463V5a.6.6 0 0 1 .6-.6h2.511V2.47c0-.26.211-.47.471-.47h5.059-.001Zm-.862 1.177H6.222v1.176h3.556V3.177Z", "fill-rule": "nonzero", "fill": _vm._fill } })])])])]);
};
var staticRenderFns$3q = [];
const __cssModules$3q = {};
var __component__$3q = /* @__PURE__ */ normalizeComponent(__vue2_script$3q, render$3q, staticRenderFns$3q, false, __vue2_injectStyles$3q, null, null, null);
function __vue2_injectStyles$3q(context) {
for (let o in __cssModules$3q) {
this[o] = __cssModules$3q[o];
}
}
var Gongjuxiang = /* @__PURE__ */ function() {
return __component__$3q.exports;
}();
const Kapian$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Kapian-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3p = /* @__PURE__ */ Vue.extend(Kapian$1);
var render$3p = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 16", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill-rule": "evenodd", "fill": "none" } }, [_c("path", { attrs: { "d": "M0 0h16v16H0z" } }), _c("path", { attrs: { "data-follow-fill": "currentColor", "fill-rule": "nonzero", "d": "M2 2h5.333v5.333H2V2Zm0 6.667h5.333V14H2V8.667ZM8.667 2H14v5.333H8.667V2Zm0 6.667H14V14H8.667V8.667Z", "fill": _vm._fill } })])])])]);
};
var staticRenderFns$3p = [];
const __cssModules$3p = {};
var __component__$3p = /* @__PURE__ */ normalizeComponent(__vue2_script$3p, render$3p, staticRenderFns$3p, false, __vue2_injectStyles$3p, null, null, null);
function __vue2_injectStyles$3p(context) {
for (let o in __cssModules$3p) {
this[o] = __cssModules$3p[o];
}
}
var Kapian = /* @__PURE__ */ function() {
return __component__$3p.exports;
}();
const Jiangxu$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Jiangxu-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3o = /* @__PURE__ */ Vue.extend(Jiangxu$1);
var render$3o = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 17", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill": "none", "fill-rule": "evenodd" } }, [_c("path", { attrs: { "d": "M0 .5h16v16H0z" } }), _c("path", { attrs: { "d": "M13.333 3.167v8h2L12.667 14.5 10 11.167h2v-8z", "fill": "#3B70FF", "fill-rule": "nonzero" } }), _c("path", { attrs: { "data-follow-fill": "currentColor", "d": "M8 12.5v1.333H2V12.5zm1.333-4.667v1.334H2V7.833zm0-4.666V4.5H2V3.167z", "fill-rule": "nonzero", "fill": _vm._fill } })])])])]);
};
var staticRenderFns$3o = [];
const __cssModules$3o = {};
var __component__$3o = /* @__PURE__ */ normalizeComponent(__vue2_script$3o, render$3o, staticRenderFns$3o, false, __vue2_injectStyles$3o, null, null, null);
function __vue2_injectStyles$3o(context) {
for (let o in __cssModules$3o) {
this[o] = __cssModules$3o[o];
}
}
var Jiangxu = /* @__PURE__ */ function() {
return __component__$3o.exports;
}();
const Shengxu$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Shengxu-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3n = /* @__PURE__ */ Vue.extend(Shengxu$1);
var render$3n = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 16 17", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill": "none", "fill-rule": "evenodd" } }, [_c("path", { attrs: { "d": "M0 .5h16v16H0z" } }), _c("path", { attrs: { "d": "m12.667 2.5 2.666 3.333h-2v8H12v-8h-2z", "fill": "#3B70FF", "fill-rule": "nonzero" } }), _c("path", { attrs: { "data-follow-fill": "currentColor", "d": "M9.333 12.5v1.333H2V12.5zm0-4.667v1.334H2V7.833zM8 3.167V4.5H2V3.167z", "fill-rule": "nonzero", "fill": _vm._fill } })])])])]);
};
var staticRenderFns$3n = [];
const __cssModules$3n = {};
var __component__$3n = /* @__PURE__ */ normalizeComponent(__vue2_script$3n, render$3n, staticRenderFns$3n, false, __vue2_injectStyles$3n, null, null, null);
function __vue2_injectStyles$3n(context) {
for (let o in __cssModules$3n) {
this[o] = __cssModules$3n[o];
}
}
var Shengxu = /* @__PURE__ */ function() {
return __component__$3n.exports;
}();
const Shudifawenzhanghao$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Shudifawenzhanghao-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3m = /* @__PURE__ */ Vue.extend(Shudifawenzhanghao$1);
var render$3m = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 28 28", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("defs", [_c("linearGradient", { attrs: { "x1": "1.763%", "y1": "0%", "x2": "98.237%", "y2": "100%", "id": "a-" + _vm._id } }, [_c("stop", { attrs: { "stop-color": "#78F6B8", "offset": "0%" } }), _c("stop", { attrs: { "stop-color": "#6EEEB0", "offset": "47.868%" } }), _c("stop", { attrs: { "stop-color": "#16AB63", "offset": "100%" } })], 1)], 1), _c("g", { attrs: { "fill": "none", "fill-rule": "evenodd" } }, [_c("path", { attrs: { "d": "M0 0h28v28H0z" } }), _c("path", { attrs: { "d": "M18.667 2.333 24.5 8.167v5.453a8.167 8.167 0 0 0-10.203 12.047H4.659A1.167 1.167 0 0 1 3.5 24.509V3.491c0-.64.52-1.158 1.159-1.158h14.008Zm2.501 14 5.25 5.834h-4.083v3.5h-2.333v-3.5h-4.084l5.25-5.834Zm-9.056-3.5H7.034v2.334h5.078v-2.334Zm4.255-4.666H7.034V10.5h9.333V8.167Z", "fill-rule": "nonzero", "fill": "url(#a-" + _vm._id + ")" } })])])])]);
};
var staticRenderFns$3m = [];
const __cssModules$3m = {};
var __component__$3m = /* @__PURE__ */ normalizeComponent(__vue2_script$3m, render$3m, staticRenderFns$3m, false, __vue2_injectStyles$3m, null, null, null);
function __vue2_injectStyles$3m(context) {
for (let o in __cssModules$3m) {
this[o] = __cssModules$3m[o];
}
}
var Shudifawenzhanghao = /* @__PURE__ */ function() {
return __component__$3m.exports;
}();
const WeiboFil$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-WeiboFil-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3l = /* @__PURE__ */ Vue.extend(WeiboFil$1);
var render$3l = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 20 20", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("defs", [_c("linearGradient", { attrs: { "y2": "100%", "x2": "50%", "y1": ".912%", "x1": "50%", "id": "a-" + _vm._id } }, [_c("stop", { attrs: { "offset": "0%", "stop-color": "#FDF2C5" } }), _c("stop", { attrs: { "offset": "100%", "stop-color": "#FED844" } })], 1)], 1), _c("g", { attrs: { "fill-rule": "evenodd", "fill": "none" } }, [_c("rect", { attrs: { "rx": "2", "height": "20", "width": "20", "fill": "url(#a-" + _vm._id + ")" } }), _c("path", { attrs: { "d": "M1.786 1.786h16.429v16.429H1.785z" } }), _c("g", { attrs: { "fill-rule": "nonzero" } }, [_c("path", { attrs: { "fill": "#F01622", "d": "M4.713 7.867c1.899-1.897 4.11-2.761 4.942-1.928.367.368.402 1.002.167 1.76-.122.382.36.171.36.171 1.533-.641 2.872-.68 3.36.02.26.37.235.893-.006 1.498-.111.28.033.323.246.385.865.269 1.827.915 1.827 2.057 0 1.891-2.725 4.27-6.82 4.27-3.126 0-6.319-1.514-6.319-4.005 0-1.302.825-2.808 2.243-4.228Zm8.306 3.93c-.162-1.637-2.315-2.764-4.807-2.517-2.493.246-4.384 1.773-4.222 3.41.162 1.638 2.315 2.764 4.807 2.518 2.493-.248 4.382-1.774 4.222-3.411Zm-7.016.071c.516-1.045 1.856-1.636 3.043-1.328 1.227.318 1.853 1.475 1.353 2.6-.509 1.153-1.973 1.766-3.214 1.365-1.2-.386-1.706-1.57-1.182-2.637Zm1.858.396c-.385-.162-.883.005-1.122.378-.243.375-.13.823.254.997.389.176.907.009 1.147-.376.237-.389.112-.833-.279-.999Zm.95-.396c-.148-.057-.333.013-.42.159-.084.146-.037.314.112.375.15.062.343-.009.43-.159.084-.15.03-.319-.122-.375Z" } }), _c("path", { attrs: { "fill": "#FFF", "d": "M13.019 11.797c-.162-1.637-2.315-2.764-4.807-2.517-2.493.246-4.384 1.773-4.222 3.41.162 1.638 2.315 2.764 4.807 2.518 2.493-.248 4.382-1.774 4.222-3.411Z" } }), _c("path", { attrs: { "fill": "#000", "d": "M6.003 11.868c.516-1.045 1.856-1.636 3.043-1.328 1.227.318 1.853 1.475 1.353 2.6-.509 1.153-1.973 1.766-3.214 1.365-1.2-.386-1.706-1.57-1.182-2.637Zm1.858.396c-.385-.162-.883.005-1.122.378-.243.375-.13.823.254.997.389.176.907.009 1.147-.376.237-.389.112-.833-.279-.999Zm.95-.396c-.148-.057-.333.013-.42.159-.084.146-.037.314.112.375.15.062.343-.009.43-.159.084-.15.03-.319-.122-.375Z" } }), _c("path", { attrs: { "fill": "#FFA827", "d": "M12.708 3.987a3.992 3.992 0 0 1 4.63 5.133.574.574 0 0 1-.725.37.578.578 0 0 1-.372-.728 2.836 2.836 0 0 0-3.29-3.646.578.578 0 0 1-.243-1.13Zm.43 2.002a1.941 1.941 0 0 1 2.251 2.498.496.496 0 1 1-.943-.308.945.945 0 0 0-1.101-1.22.495.495 0 1 1-.208-.97Z" } })])])])])]);
};
var staticRenderFns$3l = [];
const __cssModules$3l = {};
var __component__$3l = /* @__PURE__ */ normalizeComponent(__vue2_script$3l, render$3l, staticRenderFns$3l, false, __vue2_injectStyles$3l, null, null, null);
function __vue2_injectStyles$3l(context) {
for (let o in __cssModules$3l) {
this[o] = __cssModules$3l[o];
}
}
var WeiboFil = /* @__PURE__ */ function() {
return __component__$3l.exports;
}();
const Xiaohongshu$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Xiaohongshu-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3k = /* @__PURE__ */ Vue.extend(Xiaohongshu$1);
var render$3k = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 20 20", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill-rule": "evenodd", "fill": "none" } }, [_c("rect", { attrs: { "rx": "2", "height": "20", "width": "20", "fill": "#FF2542" } }), _c("g", { attrs: { "fill-rule": "nonzero", "fill": "#FFF" } }, [_c("path", { attrs: { "d": "M14.97 7.143v.242c-.018.136.04.164.168.164.212-.012.424-.002.634.029.576.077.995.586.96 1.166v.75c.212.033.422.082.627.145.348.115.584.44.585.806v1.559a.895.895 0 0 1-.838.845c-.26.018-.517 0-.774 0-.035 0-.089-.018-.1-.046-.128-.275-.25-.557-.378-.856h.792c.2 0 .26-.054.264-.253.004-.2 0-.471 0-.714a.328.328 0 0 0-.357-.378h-1.572v2.247h-1.07v-2.26h-.931c-.096 0-.14-.022-.136-.13v-.812c0-.093.025-.125.125-.122h.813c.093 0 .132-.021.129-.121v-.692c0-.085-.025-.118-.118-.114h-.578v-1.07h.689v-.385h1.066Zm.713 2.382v-.767a.146.146 0 0 0-.146-.15h-.57v.917h.716ZM9.424 7.143l-.546 1.234c-.085.192-.064.232.147.232h.791c-.017.053-.028.089-.042.125a73.066 73.066 0 0 0-.692 1.54c-.09.196-.068.225.146.228h.475l-.033.093c-.1.228-.203.453-.3.681a.14.14 0 0 1-.153.1H8.215a.952.952 0 0 1-.228-.035.314.314 0 0 1-.225-.446c.125-.325.268-.639.403-.96.046-.107.09-.214.143-.335h-.41c-.357 0-.535-.228-.393-.563.253-.596.528-1.184.792-1.784.015-.036.028-.073.04-.11h1.087Zm.72.41h2.408v1.049h-.646v3.177h1.002v1.07H9.367c.032-.068.057-.125.082-.185.114-.246.228-.492.335-.738a.182.182 0 0 1 .204-.132h.806V8.612h-.65V7.553Zm-6.819 4.405h.482c.192 0 .235-.04.235-.229V7.221h1.063v4.655a.995.995 0 0 1-.271.756.713.713 0 0 1-.46.217h-.57a.14.14 0 0 1-.104-.057 21.23 21.23 0 0 1-.375-.834Zm2.49-3.342h1.07c.025.32.053.638.078.956.029.406.057.81.09 1.216a.385.385 0 0 0 .031.171c.09.146.029.267-.035.403-.15.325-.296.656-.45.999a2.14 2.14 0 0 1-.4-.714 4.255 4.255 0 0 1-.252-1.205c-.043-.581-.09-1.16-.136-1.74l.004-.086ZM2.562 12.36a62.239 62.239 0 0 0-.538-1.173.1.1 0 0 1 0-.078 3.57 3.57 0 0 0 .139-1.027c.05-.485.078-.97.117-1.466h1.07c0 .22-.032.442-.05.66-.064.545-.092 1.077-.16 1.63-.05.46-.207.901-.457 1.29-.032.05-.07.1-.12.165Zm4.558.418.492-1.07c.55.143 1.099.04 1.662.086-.025.06-.043.114-.068.164-.117.264-.242.524-.356.788a.15.15 0 0 1-.154.103H7.491a2.19 2.19 0 0 1-.37-.071Z" } }), _c("path", { attrs: { "d": "M16.914 8.263V8.02a.535.535 0 1 1 1.07.022.517.517 0 0 1-.482.545 3.527 3.527 0 0 1-.513 0c-.029 0-.072-.046-.075-.078a1.99 1.99 0 0 1 0-.253v.007Z" } })])])])])]);
};
var staticRenderFns$3k = [];
const __cssModules$3k = {};
var __component__$3k = /* @__PURE__ */ normalizeComponent(__vue2_script$3k, render$3k, staticRenderFns$3k, false, __vue2_injectStyles$3k, null, null, null);
function __vue2_injectStyles$3k(context) {
for (let o in __cssModules$3k) {
this[o] = __cssModules$3k[o];
}
}
var Xiaohongshu = /* @__PURE__ */ function() {
return __component__$3k.exports;
}();
const Jinritoutiao$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Jinritoutiao-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3j = /* @__PURE__ */ Vue.extend(Jinritoutiao$1);
var render$3j = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 20 20", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill-rule": "evenodd", "fill": "none" } }, [_c("rect", { attrs: { "rx": "10", "height": "20", "width": "20", "fill": "#FFF" } }), _c("path", { attrs: { "fill": "#FD393D", "d": "m0 4.107 20-.714v11.786l-20 .714z" } }), _c("path", { attrs: { "d": "m5.905 5.836 1.216-.064c.093 2.31.123 3.693-.156 4.777l2.533-.132.057 1.088-3.04.16c-.445.78-1.159 1.517-2.279 2.56l-1.92.1c.07-.056.14-.122.202-.18l.03-.029c1.138-1.027 1.914-1.738 2.434-2.371l-3.086.161-.057-1.088 3.828-.2c.377-.988.33-2.356.238-4.782Zm-.802 1.918-.064-1.211-2.731-.25.063 1.211 2.732.25Zm-2.688.594.064 1.21 2.731.25-.063-1.21-2.732-.25Zm11.35 1.845-3.198.168.057 1.088 3.198-.168.128 2.446 1.252-.065-.128-2.446 3.21-.169-.057-1.088-3.21.168-.032-.61-1.252.065.032.611Zm-.905-4.452 3.587-.188 1.119-.059.066 1.26a8.167 8.167 0 0 1-1.726 1.338c.646.132 1.392.251 2.254.35l.061 1.162c-1.663-.185-2.933-.443-3.919-.726-.96.394-2.184.784-3.753 1.128l-.061-1.161a26.976 26.976 0 0 0 2.151-.568 9.572 9.572 0 0 1-1.48-.84 71.783 71.783 0 0 1-.457-.324l-.089-.053 1.064-1.797 1.183.478Zm3.203.923c-.39.298-.947.648-1.787 1.013-.873-.275-1.47-.565-1.907-.82l3.694-.193Zm-7.671 5.442-1.471.077L8.2 14.03l1.482-.078-1.291-1.845Zm7.28-.382 1.472-.077 1.28 1.846-1.472.077-1.28-1.846Zm-2.357.124-1.47.077-1.08 1.97 1.47-.078 1.08-1.97Z", "fill": "#FFF" } })])])])]);
};
var staticRenderFns$3j = [];
const __cssModules$3j = {};
var __component__$3j = /* @__PURE__ */ normalizeComponent(__vue2_script$3j, render$3j, staticRenderFns$3j, false, __vue2_injectStyles$3j, null, null, null);
function __vue2_injectStyles$3j(context) {
for (let o in __cssModules$3j) {
this[o] = __cssModules$3j[o];
}
}
var Jinritoutiao = /* @__PURE__ */ function() {
return __component__$3j.exports;
}();
const Dewu$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Dewu-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3i = /* @__PURE__ */ Vue.extend(Dewu$1);
var render$3i = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 20 20", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("g", { attrs: { "fill-rule": "evenodd", "fill": "none" } }, [_c("rect", { attrs: { "rx": "2", "height": "20", "width": "20", "fill": "#000" } }), _c("path", { attrs: { "d": "M16.235 7.228h-.686v4.937c0 .147 0 .157-.152.157h-.49c-.127 0-.137 0-.137-.137V7.228h-.7v4.962c0 .117 0 .132-.132.132h-.49c-.108 0-.128 0-.128-.122V6.234c-.024-.157-.024-.157.133-.157h.49c.117 0 .132 0 .132.137v.319h2.772c.132 0 .142 0 .142.137v6.72a.49.49 0 0 1-.534.524h-1.93a.431.431 0 0 1-.264-.088l-.892-.686a.353.353 0 0 1-.068-.093.367.367 0 0 1 .117-.04h1.088c.088 0 .142 0 .152.118a.103.103 0 0 0 .112.093h1.234a.196.196 0 0 0 .201-.2v-5.79h.03ZM7.203 9.55H5.058c-.133 0-.138 0-.138-.137V6.214c0-.122 0-.137.138-.137h4.256a.255.255 0 0 1 .108 0 .191.191 0 0 1 .073.079.328.328 0 0 1 0 .098v3.154c0 .137 0 .142-.142.142h-2.15ZM8.72 7.463v-.676H5.69v.676h3.032Zm0 .706H5.694v.676h3.027v-.676Zm2.435-1.641h.67v-.314c0-.112 0-.132.138-.137h.49c.127 0 .137 0 .137.137v.319h.215a.073.073 0 0 1 .083.083v.529a.073.073 0 0 1-.083.083h-.166v4.408h.156c.06 0 .093 0 .093.089v.524a.078.078 0 0 1-.088.088h-.19v1.47c0 .112 0 .122-.118.122h-.515c-.122 0-.137 0-.137-.138v-1.469h-1.303c-.137 0-.151 0-.151-.147v-.426c0-.108 0-.127.127-.127h1.313V7.214h-.671v3.604c0 .079-.025.118-.113.118h-.559c-.073 0-.102-.03-.102-.098V6.43c0-.142 0-.157.156-.157h.49c.118 0 .132 0 .132.132l-.004.123Zm-2.69 5.794h-3.37a.24.24 0 0 1-.102 0c-.03 0-.069-.049-.069-.073v-.54a.073.073 0 0 1 .084-.082H8.47v-.696H5.043c-.132 0-.132 0-.132-.132v-.436c0-.118 0-.127.127-.127h4.34c.073 0 .107.034.102.107v.49c0 .069-.024.103-.098.098h-.156v.69h.161a.083.083 0 0 1 .093.094v.514a.083.083 0 0 1-.093.093h-.166v1.102c0 .27-.22.49-.49.49h-2.63a.402.402 0 0 1-.265-.098l-.832-.661s-.035 0-.04-.035a.176.176 0 0 1-.034-.083.127.127 0 0 1 .074-.03h1.092c.078 0 .137 0 .147.113a.103.103 0 0 0 .117.098h1.906a.191.191 0 0 0 .2-.18c.005-.24 0-.471 0-.716Zm-5-4.158h-.343c-.083.005-.113-.035-.113-.128v-.49c0-.176.03-.117.113-.117h.98c.127 0 .137 0 .137.137v6.186c0 .108 0 .118-.113.118h-.544c-.107 0-.117 0-.117-.113V8.164Zm.156-1.382h-.49c-.083 0-.122-.029-.122-.107v-.49a.098.098 0 0 1 .108-.108h1.009c.073 0 .108.03.108.103v.49a.093.093 0 0 1-.108.108c-.167 0-.338.004-.505.004Z", "fill-rule": "nonzero", "fill": "#FFF" } })])])])]);
};
var staticRenderFns$3i = [];
const __cssModules$3i = {};
var __component__$3i = /* @__PURE__ */ normalizeComponent(__vue2_script$3i, render$3i, staticRenderFns$3i, false, __vue2_injectStyles$3i, null, null, null);
function __vue2_injectStyles$3i(context) {
for (let o in __cssModules$3i) {
this[o] = __cssModules$3i[o];
}
}
var Dewu = /* @__PURE__ */ function() {
return __component__$3i.exports;
}();
const Duxiaoshi$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number, String]
},
height: {
type: [Number, String]
},
color: {
type: String
},
fill: {
type: String
},
stroke: {
type: String
},
spin: {
type: Boolean,
default: false
},
rtl: {
type: Boolean,
default: false
}
},
computed: {
_width() {
return this.width || this.size;
},
_id() {
return "yuqing-Duxiaoshi-" + (parseInt(Math.random() * 1e6) + 1e6);
},
_height() {
return this.height || this.size;
},
_stroke() {
return this.stroke || this.color;
},
_fill() {
return this.fill || this.color;
},
cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
},
mounted: function() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
},
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
};
var __vue2_script$3h = /* @__PURE__ */ Vue.extend(Duxiaoshi$1);
var render$3h = function() {
var _vm = this;
var _h = _vm.$createElement;
var _c = _vm._self._c || _h;
return _c("span", { class: _vm.cls }, [_c("svg", { ref: "host", attrs: { "xmlns": "http://www.w3.org/2000/svg", "width": _vm._width, "height": _vm._height, "viewBox": "0 0 20 20", "preserveAspectRatio": "xMidYMid meet", "fill": "", "role": "presentation" } }, [_c("g", { attrs: { "icon": "cool" } }, [_c("defs", [_c("mask", { attrs: { "maskUnits": "userSpaceOnUse", "height": "17.14", "width": "17.14", "y": "1.43", "x": "1.39", "id": "a-" + _vm._id } }, [_c("path", { attrs: { "fill": "#fff", "d": "M1.39 1.43h17.14v17.14H1.39z" } })]), _c("mask", { attrs: { "maskUnits": "userSpaceOnUse", "height": "20", "width": "20", "y": "0", "x": "-0.04", "id": "b-" + _vm._id } }, [_c("path", { attrs: { "fill-rule": "evenodd", "fill": "#fff", "d": "M-.04 0h20v20h-20V0z" } })])]), _c("g", { attrs: { "data-name": "\u56FE\u5C42 2" } }, [_c("g", { attrs: { "data-name": "\u56FE\u5C42 1" } }, [_c("path", { attrs: { "d": "M10 0a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 0 10 10 10 0 0 1 10 0Z", "fill": "none" } }), _c("g", { attrs: { "mask": "url(#a)" } }, [_c("g", { attrs: { "mask": "url(#b)" } }, [_c("path", { attrs: { "d": "m14.69 7 .31 5a2 2 0 0 1-1.86 2.14l-3.14.21-2.13 1.89V14.5L6 14.63a2 2 0 0 1-2.14-1.85l-.34-5a2 2 0 0 1 1.82-2.11l7.22-.51A2 2 0 0 1 14.69 7Z", "fill": "#157dfe", "fill-rule": "evenodd" } })]), _c("g", { attrs: { "mask": "url(#b)" } }, [_c("path", { attrs: { "d": "m17 7.46.66 4.54a1 1 0 0 1-.84 1.14 1 1 0 0 1-.57-.08l-4.59-2.14a1 1 0 0 1-.1-1.76l3.9-2.37a1 1 0 0 1 1.38.33 1.16 1.16 0 0 1 .16.34Z", "fill": "#ff3443", "fill-rule": "evenodd" } })])])])])])])]);
};
var staticRenderFns$3h = [];
const __cssModules$3h = {};
var __component__$3h = /* @__PURE__ */ normalizeComponent(__vue2_script$3h, render$3h, staticRenderFns$3h, false, __vue2_injectStyles$3h, null, null, null);
function __vue2_injectStyles$3h(context) {
for (let o in __cssModules$3h) {
this[o] = __cssModules$3h[o];
}
}
var Duxiaoshi = /* @__PURE__ */ function() {
return __component__$3h.exports;
}();
const Pipixia$1 = {
props: {
size: {
type: [Number, String],
default: "1em"
},
width: {
type: [Number,