@coolbox/yuqing
Version:
Icons for Coolbox
1,594 lines • 1.11 MB
JavaScript
import { ref, proxyRefs, openBlock, createElementBlock, normalizeClass, createElementVNode, createStaticVNode } from "vue";
/**
* vue-class-component v8.0.0-rc.1
* (c) 2015-present Evan You
* @license MIT
*/
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor)
descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps)
_defineProperties(Constructor.prototype, protoProps);
if (staticProps)
_defineProperties(Constructor, staticProps);
return Constructor;
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
function ownKeys(object, enumerableOnly) {
var keys = Object.keys(object);
if (Object.getOwnPropertySymbols) {
var symbols = Object.getOwnPropertySymbols(object);
if (enumerableOnly)
symbols = symbols.filter(function(sym) {
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
});
keys.push.apply(keys, symbols);
}
return keys;
}
function _objectSpread2(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i] != null ? arguments[i] : {};
if (i % 2) {
ownKeys(Object(source), true).forEach(function(key) {
_defineProperty(target, key, source[key]);
});
} else if (Object.getOwnPropertyDescriptors) {
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
} else {
ownKeys(Object(source)).forEach(function(key) {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
});
}
}
return target;
}
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
if (superClass)
_setPrototypeOf(subClass, superClass);
}
function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf2(o2) {
return o2.__proto__ || Object.getPrototypeOf(o2);
};
return _getPrototypeOf(o);
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
o2.__proto__ = p2;
return o2;
};
return _setPrototypeOf(o, p);
}
function _isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct)
return false;
if (Reflect.construct.sham)
return false;
if (typeof Proxy === "function")
return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function() {
}));
return true;
} catch (e) {
return false;
}
}
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
function _possibleConstructorReturn(self, call) {
if (call && (typeof call === "object" || typeof call === "function")) {
return call;
}
return _assertThisInitialized(self);
}
function _createSuper(Derived) {
var hasNativeReflectConstruct = _isNativeReflectConstruct();
return function _createSuperInternal() {
var Super = _getPrototypeOf(Derived), result;
if (hasNativeReflectConstruct) {
var NewTarget = _getPrototypeOf(this).constructor;
result = Reflect.construct(Super, arguments, NewTarget);
} else {
result = Super.apply(this, arguments);
}
return _possibleConstructorReturn(this, result);
};
}
function _toConsumableArray(arr) {
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
}
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr))
return _arrayLikeToArray(arr);
}
function _iterableToArray(iter) {
if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter))
return Array.from(iter);
}
function _unsupportedIterableToArray(o, minLen) {
if (!o)
return;
if (typeof o === "string")
return _arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor)
n = o.constructor.name;
if (n === "Map" || n === "Set")
return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
return _arrayLikeToArray(o, minLen);
}
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length)
len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++)
arr2[i] = arr[i];
return arr2;
}
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
function defineGetter(obj, key, getter) {
Object.defineProperty(obj, key, {
get: getter,
enumerable: false,
configurable: true
});
}
function defineProxy(proxy, key, target) {
Object.defineProperty(proxy, key, {
get: function get() {
return target[key].value;
},
set: function set(value) {
target[key].value = value;
},
enumerable: true,
configurable: true
});
}
function getSuper(Ctor) {
var superProto = Object.getPrototypeOf(Ctor.prototype);
if (!superProto) {
return void 0;
}
return superProto.constructor;
}
function getOwn(value, key) {
return value.hasOwnProperty(key) ? value[key] : void 0;
}
var VueImpl = /* @__PURE__ */ function() {
function VueImpl2(props, ctx) {
var _this = this;
_classCallCheck(this, VueImpl2);
defineGetter(this, "$props", function() {
return props;
});
defineGetter(this, "$attrs", function() {
return ctx.attrs;
});
defineGetter(this, "$slots", function() {
return ctx.slots;
});
defineGetter(this, "$emit", function() {
return ctx.emit;
});
Object.keys(props).forEach(function(key) {
Object.defineProperty(_this, key, {
enumerable: false,
configurable: true,
writable: true,
value: props[key]
});
});
}
_createClass(VueImpl2, null, [
{
key: "registerHooks",
value: function registerHooks(keys) {
var _this$__h;
(_this$__h = this.__h).push.apply(_this$__h, _toConsumableArray(keys));
}
},
{
key: "with",
value: function _with(Props2) {
var propsMeta = new Props2();
var props = {};
Object.keys(propsMeta).forEach(function(key) {
var meta = propsMeta[key];
props[key] = meta !== null && meta !== void 0 ? meta : null;
});
var PropsMixin = /* @__PURE__ */ function(_this2) {
_inherits(PropsMixin2, _this2);
var _super = _createSuper(PropsMixin2);
function PropsMixin2() {
_classCallCheck(this, PropsMixin2);
return _super.apply(this, arguments);
}
return PropsMixin2;
}(this);
PropsMixin.__b = {
props
};
return PropsMixin;
}
},
{
key: "__vccOpts",
get: function get() {
if (this === Vue) {
return {};
}
var Ctor = this;
var cache = getOwn(Ctor, "__c");
if (cache) {
return cache;
}
var options = _objectSpread2({}, getOwn(Ctor, "__o"));
Ctor.__c = options;
var Super = getSuper(Ctor);
if (Super) {
options["extends"] = Super.__vccOpts;
}
var base = getOwn(Ctor, "__b");
if (base) {
options.mixins = options.mixins || [];
options.mixins.unshift(base);
}
options.methods = _objectSpread2({}, options.methods);
options.computed = _objectSpread2({}, options.computed);
var proto = Ctor.prototype;
Object.getOwnPropertyNames(proto).forEach(function(key) {
if (key === "constructor") {
return;
}
if (Ctor.__h.indexOf(key) > -1) {
options[key] = proto[key];
return;
}
var descriptor = Object.getOwnPropertyDescriptor(proto, key);
if (typeof descriptor.value === "function") {
options.methods[key] = descriptor.value;
return;
}
if (descriptor.get || descriptor.set) {
options.computed[key] = {
get: descriptor.get,
set: descriptor.set
};
return;
}
});
options.setup = function(props, ctx) {
var _promise;
var data = new Ctor(props, ctx);
var dataKeys = Object.keys(data);
var plainData = {};
var promise = null;
dataKeys.forEach(function(key) {
if (data[key] === void 0 || data[key] && data[key].__s) {
return;
}
plainData[key] = ref(data[key]);
defineProxy(data, key, plainData);
});
dataKeys.forEach(function(key) {
if (data[key] && data[key].__s) {
var setupState = data[key].__s();
if (setupState instanceof Promise) {
if (!promise) {
promise = Promise.resolve(plainData);
}
promise = promise.then(function() {
return setupState.then(function(value) {
plainData[key] = proxyRefs(value);
return plainData;
});
});
} else {
plainData[key] = proxyRefs(setupState);
}
}
});
return (_promise = promise) !== null && _promise !== void 0 ? _promise : plainData;
};
var decorators = getOwn(Ctor, "__d");
if (decorators) {
decorators.forEach(function(fn) {
return fn(options);
});
}
var injections = [
"render",
"ssrRender",
"__file",
"__cssModules",
"__scopeId",
"__hmrId"
];
injections.forEach(function(key) {
if (Ctor[key]) {
options[key] = Ctor[key];
}
});
return options;
}
}
]);
return VueImpl2;
}();
VueImpl.__h = [
"data",
"beforeCreate",
"created",
"beforeMount",
"mounted",
"beforeUnmount",
"unmounted",
"beforeUpdate",
"updated",
"activated",
"deactivated",
"render",
"errorCaptured",
"serverPrefetch"
];
var Vue = VueImpl;
function prop(options) {
return options;
}
var _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
target[key] = val;
}
return target;
};
class Props$3s {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Biaoji extends Vue.with(Props$3s) {
get _id() {
return "yuqing-Biaoji-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3s = Biaoji;
const _hoisted_1$3s = ["width", "height"];
const _hoisted_2$3s = { icon: "cool" };
const _hoisted_3$3s = ["fill"];
const _hoisted_4$2k = /* @__PURE__ */ createElementVNode("path", {
"fill-opacity": "0.01",
d: "M0 0h16v16H0z"
}, null, -1);
const _hoisted_5$24 = /* @__PURE__ */ createElementVNode("path", {
"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"
}, null, -1);
const _hoisted_6$1c = [
_hoisted_4$2k,
_hoisted_5$24
];
function _sfc_render$3s(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 16",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3s, [
createElementVNode("g", {
"data-follow-fill": "currentColor",
"fill-rule": "evenodd",
fill: _ctx._fill
}, _hoisted_6$1c, 8, _hoisted_3$3s)
])
], 8, _hoisted_1$3s))
], 2);
}
var Biaoji$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3s, [["render", _sfc_render$3s]]);
class Props$3r {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Liebiao extends Vue.with(Props$3r) {
get _id() {
return "yuqing-Liebiao-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3r = Liebiao;
const _hoisted_1$3r = ["width", "height"];
const _hoisted_2$3r = { icon: "cool" };
const _hoisted_3$3r = {
fill: "none",
"fill-rule": "evenodd"
};
const _hoisted_4$2j = /* @__PURE__ */ createElementVNode("path", { d: "M0 0h16v16H0z" }, null, -1);
const _hoisted_5$23 = ["fill"];
function _sfc_render$3r(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 16",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3r, [
createElementVNode("g", _hoisted_3$3r, [
_hoisted_4$2j,
createElementVNode("path", {
"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: _ctx._fill
}, null, 8, _hoisted_5$23)
])
])
], 8, _hoisted_1$3r))
], 2);
}
var Liebiao$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3r, [["render", _sfc_render$3r]]);
class Props$3q {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Gongjuxiang extends Vue.with(Props$3q) {
get _id() {
return "yuqing-Gongjuxiang-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3q = Gongjuxiang;
const _hoisted_1$3q = ["width", "height"];
const _hoisted_2$3q = { icon: "cool" };
const _hoisted_3$3q = {
fill: "none",
"fill-rule": "evenodd"
};
const _hoisted_4$2i = /* @__PURE__ */ createElementVNode("path", { d: "M0 0h16v16H0z" }, null, -1);
const _hoisted_5$22 = ["fill"];
function _sfc_render$3q(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 16",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3q, [
createElementVNode("g", _hoisted_3$3q, [
_hoisted_4$2i,
createElementVNode("path", {
"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: _ctx._fill
}, null, 8, _hoisted_5$22)
])
])
], 8, _hoisted_1$3q))
], 2);
}
var Gongjuxiang$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3q, [["render", _sfc_render$3q]]);
class Props$3p {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Kapian extends Vue.with(Props$3p) {
get _id() {
return "yuqing-Kapian-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3p = Kapian;
const _hoisted_1$3p = ["width", "height"];
const _hoisted_2$3p = { icon: "cool" };
const _hoisted_3$3p = {
"fill-rule": "evenodd",
fill: "none"
};
const _hoisted_4$2h = /* @__PURE__ */ createElementVNode("path", { d: "M0 0h16v16H0z" }, null, -1);
const _hoisted_5$21 = ["fill"];
function _sfc_render$3p(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 16",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3p, [
createElementVNode("g", _hoisted_3$3p, [
_hoisted_4$2h,
createElementVNode("path", {
"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: _ctx._fill
}, null, 8, _hoisted_5$21)
])
])
], 8, _hoisted_1$3p))
], 2);
}
var Kapian$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3p, [["render", _sfc_render$3p]]);
class Props$3o {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Jiangxu extends Vue.with(Props$3o) {
get _id() {
return "yuqing-Jiangxu-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3o = Jiangxu;
const _hoisted_1$3o = ["width", "height"];
const _hoisted_2$3o = { icon: "cool" };
const _hoisted_3$3o = {
fill: "none",
"fill-rule": "evenodd"
};
const _hoisted_4$2g = /* @__PURE__ */ createElementVNode("path", { d: "M0 .5h16v16H0z" }, null, -1);
const _hoisted_5$20 = /* @__PURE__ */ createElementVNode("path", {
d: "M13.333 3.167v8h2L12.667 14.5 10 11.167h2v-8z",
fill: "#3B70FF",
"fill-rule": "nonzero"
}, null, -1);
const _hoisted_6$1b = ["fill"];
function _sfc_render$3o(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 17",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3o, [
createElementVNode("g", _hoisted_3$3o, [
_hoisted_4$2g,
_hoisted_5$20,
createElementVNode("path", {
"data-follow-fill": "currentColor",
d: "M8 12.5v1.333H2V12.5zm1.333-4.667v1.334H2V7.833zm0-4.666V4.5H2V3.167z",
"fill-rule": "nonzero",
fill: _ctx._fill
}, null, 8, _hoisted_6$1b)
])
])
], 8, _hoisted_1$3o))
], 2);
}
var Jiangxu$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3o, [["render", _sfc_render$3o]]);
class Props$3n {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Shengxu extends Vue.with(Props$3n) {
get _id() {
return "yuqing-Shengxu-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3n = Shengxu;
const _hoisted_1$3n = ["width", "height"];
const _hoisted_2$3n = { icon: "cool" };
const _hoisted_3$3n = {
fill: "none",
"fill-rule": "evenodd"
};
const _hoisted_4$2f = /* @__PURE__ */ createElementVNode("path", { d: "M0 .5h16v16H0z" }, null, -1);
const _hoisted_5$1$ = /* @__PURE__ */ createElementVNode("path", {
d: "m12.667 2.5 2.666 3.333h-2v8H12v-8h-2z",
fill: "#3B70FF",
"fill-rule": "nonzero"
}, null, -1);
const _hoisted_6$1a = ["fill"];
function _sfc_render$3n(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 16 17",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3n, [
createElementVNode("g", _hoisted_3$3n, [
_hoisted_4$2f,
_hoisted_5$1$,
createElementVNode("path", {
"data-follow-fill": "currentColor",
d: "M9.333 12.5v1.333H2V12.5zm0-4.667v1.334H2V7.833zM8 3.167V4.5H2V3.167z",
"fill-rule": "nonzero",
fill: _ctx._fill
}, null, 8, _hoisted_6$1a)
])
])
], 8, _hoisted_1$3n))
], 2);
}
var Shengxu$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3n, [["render", _sfc_render$3n]]);
class Props$3m {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Shudifawenzhanghao extends Vue.with(Props$3m) {
get _id() {
return "yuqing-Shudifawenzhanghao-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3m = Shudifawenzhanghao;
const _hoisted_1$3m = ["width", "height"];
const _hoisted_2$3m = { icon: "cool" };
const _hoisted_3$3m = ["id"];
const _hoisted_4$2e = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#78F6B8",
offset: "0%"
}, null, -1);
const _hoisted_5$1_ = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#6EEEB0",
offset: "47.868%"
}, null, -1);
const _hoisted_6$19 = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#16AB63",
offset: "100%"
}, null, -1);
const _hoisted_7$Q = [
_hoisted_4$2e,
_hoisted_5$1_,
_hoisted_6$19
];
const _hoisted_8$A = {
fill: "none",
"fill-rule": "evenodd"
};
const _hoisted_9$A = /* @__PURE__ */ createElementVNode("path", { d: "M0 0h28v28H0z" }, null, -1);
const _hoisted_10$q = ["fill"];
function _sfc_render$3m(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 28 28",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3m, [
createElementVNode("defs", null, [
createElementVNode("linearGradient", {
x1: "1.763%",
y1: "0%",
x2: "98.237%",
y2: "100%",
id: "a-" + _ctx._id
}, _hoisted_7$Q, 8, _hoisted_3$3m)
]),
createElementVNode("g", _hoisted_8$A, [
_hoisted_9$A,
createElementVNode("path", {
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-" + _ctx._id + ")"
}, null, 8, _hoisted_10$q)
])
])
], 8, _hoisted_1$3m))
], 2);
}
var Shudifawenzhanghao$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3m, [["render", _sfc_render$3m]]);
class Props$3l {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class WeiboFil extends Vue.with(Props$3l) {
get _id() {
return "yuqing-WeiboFil-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3l = WeiboFil;
const _hoisted_1$3l = ["width", "height"];
const _hoisted_2$3l = { icon: "cool" };
const _hoisted_3$3l = ["id"];
const _hoisted_4$2d = /* @__PURE__ */ createElementVNode("stop", {
offset: "0%",
"stop-color": "#FDF2C5"
}, null, -1);
const _hoisted_5$1Z = /* @__PURE__ */ createElementVNode("stop", {
offset: "100%",
"stop-color": "#FED844"
}, null, -1);
const _hoisted_6$18 = [
_hoisted_4$2d,
_hoisted_5$1Z
];
const _hoisted_7$P = {
"fill-rule": "evenodd",
fill: "none"
};
const _hoisted_8$z = ["fill"];
const _hoisted_9$z = /* @__PURE__ */ createStaticVNode('<path d="M1.786 1.786h16.429v16.429H1.785z"></path><g fill-rule="nonzero"><path 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"></path><path 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"></path><path 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"></path><path 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"></path></g>', 2);
function _sfc_render$3l(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 20 20",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$3l, [
createElementVNode("defs", null, [
createElementVNode("linearGradient", {
y2: "100%",
x2: "50%",
y1: ".912%",
x1: "50%",
id: "a-" + _ctx._id
}, _hoisted_6$18, 8, _hoisted_3$3l)
]),
createElementVNode("g", _hoisted_7$P, [
createElementVNode("rect", {
rx: "2",
height: "20",
width: "20",
fill: "url(#a-" + _ctx._id + ")"
}, null, 8, _hoisted_8$z),
_hoisted_9$z
])
])
], 8, _hoisted_1$3l))
], 2);
}
var WeiboFil$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3l, [["render", _sfc_render$3l]]);
class Props$3k {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Xiaohongshu extends Vue.with(Props$3k) {
get _id() {
return "yuqing-Xiaohongshu-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-yuqing",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
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") || "");
});
}
}
}
const _sfc_main$3k = Xiaohongshu;
const _hoisted_1$3k = ["width", "height"];
const _hoisted_2$3k = /* @__PURE__ */ createElementVNode("g", { icon: "cool" }, [
/* @__PURE__ */ createElementVNode("g", {
"fill-rule": "evenodd",
fill: "none"
}, [
/* @__PURE__ */ createElementVNode("rect", {
rx: "2",
height: "20",
width: "20",
fill: "#FF2542"
}),
/* @__PURE__ */ createElementVNode("g", {
"fill-rule": "nonzero",
fill: "#FFF"
}, [
/* @__PURE__ */ createElementVNode("path", { 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" }),
/* @__PURE__ */ createElementVNode("path", { 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" })
])
])
], -1);
const _hoisted_3$3k = [
_hoisted_2$3k
];
function _sfc_render$3k(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 20 20",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, _hoisted_3$3k, 8, _hoisted_1$3k))
], 2);
}
var Xiaohongshu$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3k, [["render", _sfc_render$3k]]);
class Props$3j {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
thi