UNPKG

phosphor-vue

Version:

A clean and friendly icon family for Vue, too!

1,741 lines (1,603 loc) 7.95 MB
import Vue from 'vue'; const PropValidator = { color: String, size: [String, Number], weight: { type: String }, mirrored: Boolean }; const ContextGetter = { contextWeight: { from: "weight", default: "regular" }, contextSize: { from: "size", default: "1em" }, contextColor: { from: "color", default: "currentColor" }, contextMirrored: { from: "mirrored", default: false } }; var script$gm = Vue.extend({ name: "PhActivity", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) { if (typeof shadowMode !== 'boolean') { createInjectorSSR = createInjector; createInjector = shadowMode; shadowMode = false; } // Vue.extend constructor export interop. const options = typeof script === 'function' ? script.options : script; // render functions if (template && template.render) { options.render = template.render; options.staticRenderFns = template.staticRenderFns; options._compiled = true; // functional template if (isFunctionalTemplate) { options.functional = true; } } // scopedId if (scopeId) { options._scopeId = scopeId; } let hook; if (moduleIdentifier) { // server build hook = function (context) { // 2.3 injection context = context || // cached call (this.$vnode && this.$vnode.ssrContext) || // stateful (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional // 2.2 with runInNewContext: true if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { context = __VUE_SSR_CONTEXT__; } // inject component styles if (style) { style.call(this, createInjectorSSR(context)); } // register component module identifier for async chunk inference if (context && context._registeredComponents) { context._registeredComponents.add(moduleIdentifier); } }; // used by ssr in case component is cached and beforeCreate // never gets called options._ssrRegister = hook; } else if (style) { hook = shadowMode ? function (context) { style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot)); } : function (context) { style.call(this, createInjector(context)); }; } if (hook) { if (options.functional) { // register for functional component in vue file const originalRender = options.render; options.render = function renderWithStyleInjection(h, context) { hook.call(context); return originalRender(h, context); }; } else { // inject component registration as beforeCreate hook const existing = options.beforeCreate; options.beforeCreate = existing ? [].concat(existing, hook) : [hook]; } } return script; } /* script */ const __vue_script__$gm = script$gm; /* template */ var __vue_render__$gm = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('polyline', { attrs: { "points": "24 128 56 128 96 40 160 208 200 128 232 128", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('polyline', { attrs: { "points": "24 128 56 128 96 40 160 208 200 128 232 128", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M160,216h-.4a8.1,8.1,0,0,1-7.1-5.2L95.4,60.8,63.3,131.3A8,8,0,0,1,56,136H24a8,8,0,0,1,0-16H50.9L88.7,36.7A8.2,8.2,0,0,1,96.3,32a8,8,0,0,1,7.2,5.2L161,188.1l31.8-63.7A8.2,8.2,0,0,1,200,120h32a8,8,0,0,1,0,16H204.9l-37.7,75.6A8.2,8.2,0,0,1,160,216Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('polyline', { attrs: { "points": "24 128 56 128 96 40 160 208 200 128 232 128", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('polyline', { attrs: { "points": "24 128 56 128 96 40 160 208 200 128 232 128", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('polyline', { attrs: { "points": "24 128 56 128 96 40 160 208 200 128 232 128", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gm = []; /* style */ const __vue_inject_styles__$gm = undefined; /* scoped */ const __vue_scope_id__$gm = undefined; /* module identifier */ const __vue_module_identifier__$gm = undefined; /* functional template */ const __vue_is_functional_template__$gm = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gm = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gm, staticRenderFns: __vue_staticRenderFns__$gm }, __vue_inject_styles__$gm, __vue_script__$gm, __vue_scope_id__$gm, __vue_is_functional_template__$gm, __vue_module_identifier__$gm, false, undefined, undefined, undefined); var script$gl = Vue.extend({ name: "PhAddressBook", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gl = script$gl; /* template */ var __vue_render__$gl = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('circle', { attrs: { "cx": "136", "cy": "116", "r": "32", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "108", "x2": "56", "y2": "108", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "68", "x2": "56", "y2": "68", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "148", "x2": "56", "y2": "148", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "188", "x2": "56", "y2": "188", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('rect', { attrs: { "x": "40", "y": "48", "width": "192", "height": "160", "rx": "8", "transform": "translate(264 -8) rotate(90)", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('path', { attrs: { "d": "M92,167.2a60,60,0,0,1,88,0", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('circle', { attrs: { "cx": "136", "cy": "112", "r": "32", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M208,32H64a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H208a8,8,0,0,0,8-8V40A8,8,0,0,0,208,32ZM136,144a32,32,0,1,1,32-32A32,32,0,0,1,136,144Z", "opacity": "0.2" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "108", "x2": "56", "y2": "108", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "68", "x2": "56", "y2": "68", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "148", "x2": "56", "y2": "148", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "188", "x2": "56", "y2": "188", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M88,168a60,60,0,0,1,96,0", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('rect', { attrs: { "x": "40", "y": "48", "width": "192", "height": "160", "rx": "8", "transform": "translate(264 -8) rotate(90)", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M160,112a24,24,0,1,1-24-24A24.1,24.1,0,0,1,160,112Zm64-72V216a16,16,0,0,1-16,16H64a16,16,0,0,1-16-16V196H32a8,8,0,0,1,0-16H48V156H32a8,8,0,0,1,0-16H48V116H32a8,8,0,0,1,0-16H48V76H32a8,8,0,0,1,0-16H48V40A16,16,0,0,1,64,24H208A16,16,0,0,1,224,40ZM190.4,163.2A67.8,67.8,0,0,0,163,141.5a40,40,0,1,0-54,0,67.8,67.8,0,0,0-27.4,21.7,8,8,0,0,0,1.6,11.2A7.7,7.7,0,0,0,88,176a8,8,0,0,0,6.4-3.2,52,52,0,0,1,83.2,0,8.1,8.1,0,0,0,11.2,1.6A8,8,0,0,0,190.4,163.2Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('circle', { attrs: { "cx": "136", "cy": "112", "r": "32", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "108", "x2": "56", "y2": "108", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "68", "x2": "56", "y2": "68", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "148", "x2": "56", "y2": "148", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "188", "x2": "56", "y2": "188", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('path', { attrs: { "d": "M88,168a60,60,0,0,1,96,0", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('rect', { attrs: { "x": "40", "y": "48", "width": "192", "height": "160", "rx": "8", "transform": "translate(264 -8) rotate(90)", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('circle', { attrs: { "cx": "136", "cy": "112", "r": "32", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "108", "x2": "56", "y2": "108", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "68", "x2": "56", "y2": "68", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "148", "x2": "56", "y2": "148", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "188", "x2": "56", "y2": "188", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('path', { attrs: { "d": "M88,168a60,60,0,0,1,96,0", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('rect', { attrs: { "x": "40", "y": "48", "width": "192", "height": "160", "rx": "8", "transform": "translate(264 -8) rotate(90)", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('circle', { attrs: { "cx": "136", "cy": "112", "r": "32", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "108", "x2": "56", "y2": "108", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "68", "x2": "56", "y2": "68", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "148", "x2": "56", "y2": "148", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('line', { attrs: { "x1": "32", "y1": "188", "x2": "56", "y2": "188", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M88,168a60,60,0,0,1,96,0", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('rect', { attrs: { "x": "40", "y": "48", "width": "192", "height": "160", "rx": "8", "transform": "translate(264 -8) rotate(90)", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gl = []; /* style */ const __vue_inject_styles__$gl = undefined; /* scoped */ const __vue_scope_id__$gl = undefined; /* module identifier */ const __vue_module_identifier__$gl = undefined; /* functional template */ const __vue_is_functional_template__$gl = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gl = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gl, staticRenderFns: __vue_staticRenderFns__$gl }, __vue_inject_styles__$gl, __vue_script__$gl, __vue_scope_id__$gl, __vue_is_functional_template__$gl, __vue_module_identifier__$gl, false, undefined, undefined, undefined); var script$gk = Vue.extend({ name: "PhAirplane", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gk = script$gk; /* template */ var __vue_render__$gk = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "opacity": "0.2" } }), _vm._v(" "), _c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M240.2,136v32a7.8,7.8,0,0,1-2.9,6.2,7.9,7.9,0,0,1-6.6,1.6l-70.5-14v26.9l13.5,13.7A7.9,7.9,0,0,1,176,208v24a7.9,7.9,0,0,1-3.5,6.6A8.2,8.2,0,0,1,168,240a8,8,0,0,1-3-.6l-37-14.8L91,239.4a8,8,0,0,1-7.5-.8A7.9,7.9,0,0,1,80,232V208a8.1,8.1,0,0,1,2.3-5.7L96,188.7V161.8l-70.4,14A7.9,7.9,0,0,1,16,168V136a8.2,8.2,0,0,1,4.4-7.2L96,91V48a32,32,0,0,1,64,0V91l75.6,37.8A8.2,8.2,0,0,1,240.2,136Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('path', { attrs: { "d": "M128,216,88,232V200l16-16V152L24,168V136l80-40V48a24,24,0,0,1,48,0V96l80,40v32l-80-16v32L168,200v32Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gk = []; /* style */ const __vue_inject_styles__$gk = undefined; /* scoped */ const __vue_scope_id__$gk = undefined; /* module identifier */ const __vue_module_identifier__$gk = undefined; /* functional template */ const __vue_is_functional_template__$gk = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gk = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gk, staticRenderFns: __vue_staticRenderFns__$gk }, __vue_inject_styles__$gk, __vue_script__$gk, __vue_scope_id__$gk, __vue_is_functional_template__$gk, __vue_module_identifier__$gk, false, undefined, undefined, undefined); var script$gj = Vue.extend({ name: "PhAirplaneInFlight", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gj = script$gj; /* template */ var __vue_render__$gj = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('line', { attrs: { "x1": "72", "y1": "216", "x2": "216", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "opacity": "0.2" } }), _vm._v(" "), _c('line', { attrs: { "x1": "72", "y1": "216", "x2": "216", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M224,216a8,8,0,0,1-8,8H72a8,8,0,0,1,0-16H216A8,8,0,0,1,224,216ZM208,100H153.8L110.9,53.3A3.9,3.9,0,0,0,108,52H91.1a11.6,11.6,0,0,0-9.7,5,11.9,11.9,0,0,0-1.7,10.8L90.5,100H65.9L47.1,77.4A4.1,4.1,0,0,0,44,76H26.8a12.1,12.1,0,0,0-9.7,4.8,11.9,11.9,0,0,0-1.8,10.6l14,46.9A35.8,35.8,0,0,0,63.8,164H240a4,4,0,0,0,4-4V136A36,36,0,0,0,208,100Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('line', { attrs: { "x1": "72", "y1": "216", "x2": "216", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('line', { attrs: { "x1": "72", "y1": "216", "x2": "216", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('line', { attrs: { "x1": "72", "y1": "216", "x2": "216", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M26.8,80H44l20,24H96L83.5,66.5A8,8,0,0,1,91.1,56H108l44,48h56a32,32,0,0,1,32,32v24H63.8a32,32,0,0,1-30.6-22.8L19.1,90.3A8,8,0,0,1,26.8,80Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gj = []; /* style */ const __vue_inject_styles__$gj = undefined; /* scoped */ const __vue_scope_id__$gj = undefined; /* module identifier */ const __vue_module_identifier__$gj = undefined; /* functional template */ const __vue_is_functional_template__$gj = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gj = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gj, staticRenderFns: __vue_staticRenderFns__$gj }, __vue_inject_styles__$gj, __vue_script__$gj, __vue_scope_id__$gj, __vue_is_functional_template__$gj, __vue_module_identifier__$gj, false, undefined, undefined, undefined); var script$gi = Vue.extend({ name: "PhAirplaneLanding", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gi = script$gi; /* template */ var __vue_render__$gi = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('line', { attrs: { "x1": "96", "y1": "216", "x2": "240", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "opacity": "0.2" } }), _vm._v(" "), _c('line', { attrs: { "x1": "96", "y1": "216", "x2": "240", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M248,216a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16H240A8,8,0,0,1,248,216Zm-24-28a4.1,4.1,0,0,0,2.4-.8A4,4,0,0,0,228,184V148.3a36.1,36.1,0,0,0-26.4-34.7l-46.9-13L123.5,46a4.3,4.3,0,0,0-2.2-1.8l-13.5-4.5A11.9,11.9,0,0,0,97,41.4a11.6,11.6,0,0,0-5,9.7V82.6L66.8,74.7,51.5,46.1a4.1,4.1,0,0,0-2.2-1.9L35.8,39.7A11.9,11.9,0,0,0,25,41.4a11.6,11.6,0,0,0-5,9.7v52.6a36.1,36.1,0,0,0,26.3,34.7l176.6,49.5Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('line', { attrs: { "x1": "96", "y1": "216", "x2": "240", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('line', { attrs: { "x1": "96", "y1": "216", "x2": "240", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('line', { attrs: { "x1": "96", "y1": "216", "x2": "240", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M24,103.7V51.1a8,8,0,0,1,10.5-7.6L48,48,64,78,96,88V51.1a8,8,0,0,1,10.5-7.6L120,48l32,56,48.6,13.5A31.9,31.9,0,0,1,224,148.3V184L47.4,134.5A31.9,31.9,0,0,1,24,103.7Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gi = []; /* style */ const __vue_inject_styles__$gi = undefined; /* scoped */ const __vue_scope_id__$gi = undefined; /* module identifier */ const __vue_module_identifier__$gi = undefined; /* functional template */ const __vue_is_functional_template__$gi = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gi = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gi, staticRenderFns: __vue_staticRenderFns__$gi }, __vue_inject_styles__$gi, __vue_script__$gi, __vue_scope_id__$gi, __vue_is_functional_template__$gi, __vue_module_identifier__$gi, false, undefined, undefined, undefined); var script$gh = Vue.extend({ name: "PhAirplaneTakeoff", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gh = script$gh; /* template */ var __vue_render__$gh = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('line', { attrs: { "x1": "24", "y1": "216", "x2": "168", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "opacity": "0.2" } }), _vm._v(" "), _c('line', { attrs: { "x1": "24", "y1": "216", "x2": "168", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M176,216a8,8,0,0,1-8,8H24a8,8,0,0,1,0-16H168A8,8,0,0,1,176,216ZM247.1,89.5,228.5,66.7a35.9,35.9,0,0,0-46.2-8.2L139.5,83.6,81.3,64.2a4.1,4.1,0,0,0-2.9.1L61.9,71.4a12,12,0,0,0-3.3,19.9l26.6,24L63.7,127.5,37.6,116.3a4.4,4.4,0,0,0-3.2,0l-16.7,7.2a12,12,0,0,0-3.5,19.8h0l37.7,35.3a35.8,35.8,0,0,0,42.7,4.9L246,95.5a4,4,0,0,0,1.9-2.8A4.1,4.1,0,0,0,247.1,89.5Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('line', { attrs: { "x1": "24", "y1": "216", "x2": "168", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } }), _vm._v(" "), _c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('line', { attrs: { "x1": "24", "y1": "216", "x2": "168", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } }), _vm._v(" "), _c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('line', { attrs: { "x1": "24", "y1": "216", "x2": "168", "y2": "216", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M16.9,140.4l37.7,35.3a32,32,0,0,0,38,4.3L244,92,225.4,69.2a32,32,0,0,0-41-7.3L140,88,80,68,63.5,75.1a8,8,0,0,0-2.2,13.3L92,116,64,132,36,120l-16.8,7.2A8,8,0,0,0,16.9,140.4Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gh = []; /* style */ const __vue_inject_styles__$gh = undefined; /* scoped */ const __vue_scope_id__$gh = undefined; /* module identifier */ const __vue_module_identifier__$gh = undefined; /* functional template */ const __vue_is_functional_template__$gh = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gh = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gh, staticRenderFns: __vue_staticRenderFns__$gh }, __vue_inject_styles__$gh, __vue_script__$gh, __vue_scope_id__$gh, __vue_is_functional_template__$gh, __vue_module_identifier__$gh, false, undefined, undefined, undefined); var script$gg = Vue.extend({ name: "PhAirplaneTilt", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gg = script$gg; /* template */ var __vue_render__$gg = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "opacity": "0.2" } }), _vm._v(" "), _c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M215,86.2l-29.8,28,30.2,83.1a8,8,0,0,1-1.9,8.4l-24,24a8.2,8.2,0,0,1-6.4,2.3,8.1,8.1,0,0,1-5.8-3.5l-42.6-62.3-18.8,17.3V204a8.2,8.2,0,0,1-2.4,5.7l-20,20a7.9,7.9,0,0,1-5.6,2.3l-1.8-.2a8,8,0,0,1-5.8-5.2L67.4,188.5,29.3,175.6a8,8,0,0,1-5.2-5.8,8.3,8.3,0,0,1,2.1-7.5l20-20a8.1,8.1,0,0,1,5.7-2.3H72.6l18.7-18.8L27.4,78.7a8.7,8.7,0,0,1-3.5-5.9,8.2,8.2,0,0,1,2.3-6.5l24-24a7.9,7.9,0,0,1,8.4-1.8l83.1,30.2,26.6-28.2a5.2,5.2,0,0,1,1-1.1,32,32,0,0,1,47,43.3A6.4,6.4,0,0,1,215,86.2Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "12" } })]) : _vm.displayWeight === 'thin' ? _c('g', [_c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "8" } })]) : _vm.displayWeight === 'regular' ? _c('g', [_c('path', { attrs: { "d": "M209.5,80.4,175.9,112l32,88-24,24-47.8-70-24.2,22v24l-24,24L73.7,182.1,31.9,168l24-24h24l24-24-72-48,24-24,88,32,31.7-33.5-.7.5a24,24,0,0,1,34,34Z", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm._e()], 2); }; var __vue_staticRenderFns__$gg = []; /* style */ const __vue_inject_styles__$gg = undefined; /* scoped */ const __vue_scope_id__$gg = undefined; /* module identifier */ const __vue_module_identifier__$gg = undefined; /* functional template */ const __vue_is_functional_template__$gg = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __vue_component__$gg = /*#__PURE__*/normalizeComponent({ render: __vue_render__$gg, staticRenderFns: __vue_staticRenderFns__$gg }, __vue_inject_styles__$gg, __vue_script__$gg, __vue_scope_id__$gg, __vue_is_functional_template__$gg, __vue_module_identifier__$gg, false, undefined, undefined, undefined); var script$gf = Vue.extend({ name: "PhAirplay", props: PropValidator, inject: ContextGetter, computed: { displayWeight() { const { weight, contextWeight } = this; return weight ?? contextWeight; }, displaySize() { const { size, contextSize } = this; return size ?? contextSize; }, displayColor() { const { color, contextColor } = this; return color ?? contextColor; }, displayMirrored() { const { mirrored, contextMirrored } = this; return mirrored ?? contextMirrored ? "scale(-1, 1)" : undefined; } } }); /* script */ const __vue_script__$gf = script$gf; /* template */ var __vue_render__$gf = function () { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('svg', _vm._g(_vm._b({ attrs: { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 256 256", "width": _vm.displaySize, "height": _vm.displaySize, "fill": _vm.displayColor, "transform": _vm.displayMirrored } }, 'svg', _vm.$attrs, false), _vm.$listeners), [_vm._t("default"), _vm._v(" "), _vm.displayWeight === 'bold' ? _c('g', [_c('polygon', { attrs: { "points": "128 160 176 216 80 216 128 160", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } }), _vm._v(" "), _c('path', { attrs: { "d": "M48,192a16,16,0,0,1-16-16V64A16,16,0,0,1,48,48H208a16,16,0,0,1,16,16V176a16,16,0,0,1-16,16", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "24" } })]) : _vm.displayWeight === 'duotone' ? _c('g', [_c('path', { attrs: { "d": "M208,48H48A16,16,0,0,0,32,64V176a16,16,0,0,0,16,16h52.6L128,160l27.4,32H208a16,16,0,0,0,16-16V64A16,16,0,0,0,208,48Z", "opacity": "0.2" } }), _vm._v(" "), _c('polygon', { attrs: { "points": "128 160 176 216 80 216 128 160", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } }), _vm._v(" "), _c('path', { attrs: { "d": "M64,192H48a16,16,0,0,1-16-16V64A16,16,0,0,1,48,48H208a16,16,0,0,1,16,16V176a16,16,0,0,1-16,16H192", "fill": "none", "stroke": _vm.displayColor, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "16" } })]) : _vm.displayWeight === 'fill' ? _c('g', [_c('path', { attrs: { "d": "M182.1,210.8A8,8,0,0,1,176,224H80a8,8,0,0,1-6.1-13.2l48-56a8,8,0,0,1,12.2,0ZM208,40H48A23.9,23.9,0,0,0,24,64V176a23.9,23.9,0,0,0,24,24H60.3a4.1,4.1,0,0,0,3-1.4l46.5-54.2a23.9,23.9,0,0,1,36.4,0l46.5,54.2a4.1,4.1,0,0,0,3,1.4H208a23.9,23.9,0,0,0,24-24V64A23.9,23.9,0,0,0,208,40Z" } })]) : _vm.displayWeight === 'light' ? _c('g', [_c('polygon', { attrs: { "points": "128 160 176 216 80 216 128 160", "fill": "none", "stroke":