phosphor-vue
Version:
A clean and friendly icon family for Vue, too!
760 lines (630 loc) • 6.18 MB
JavaScript
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var Vue=require('vue');function _interopDefaultLegacy(e){return e&&typeof e==='object'&&'default'in e?e:{'default':e}}var Vue__default=/*#__PURE__*/_interopDefaultLegacy(Vue);function _slicedToArray(arr, i) {
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
}
function _arrayWithHoles(arr) {
if (Array.isArray(arr)) return arr;
}
function _iterableToArrayLimit(arr, i) {
if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
var _arr = [];
var _n = true;
var _d = false;
var _e = undefined;
try {
for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
_arr.push(_s.value);
if (i && _arr.length === i) break;
}
} catch (err) {
_d = true;
_e = err;
} finally {
try {
if (!_n && _i["return"] != null) _i["return"]();
} finally {
if (_d) throw _e;
}
}
return _arr;
}
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 _nonIterableRest() {
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}var PropValidator = {
color: String,
size: [String, Number],
weight: {
type: String
},
mirrored: Boolean
};
var ContextGetter = {
contextWeight: {
from: "weight",
default: "regular"
},
contextSize: {
from: "size",
default: "1em"
},
contextColor: {
from: "color",
default: "currentColor"
},
contextMirrored: {
from: "mirrored",
default: false
}
};var script = Vue__default['default'].extend({
name: "PhActivity",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? 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 */
var __vue_script__ = script;
/* template */
var __vue_render__ = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><polyline points=\"24.002 128 56.002 128 96.002 40 160.002 208 200.002 128 232.002 128\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></polyline></g>" : _vm.displayWeight === 'duotone' ? "<g><polyline points=\"24.002 128 56.002 128 96.002 40 160.002 208 200.002 128 232.002 128\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></polyline></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M160.00439,216c-.13378,0-.2666-.00342-.40039-.00977a7.99906,7.99906,0,0,1-7.07714-5.14209L95.35205,60.7644,63.28564,131.3103A8.00165,8.00165,0,0,1,56.00244,136h-32a8,8,0,0,1,0-16H50.85107L88.71924,36.6897a7.99988,7.99988,0,0,1,14.75879.4624l57.51562,150.97729,31.85352-63.707A7.99979,7.99979,0,0,1,200.00244,120h32a8,8,0,0,1,0,16H204.94678l-37.78907,75.57764A7.99952,7.99952,0,0,1,160.00439,216Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><polyline points=\"24.002 128 56.002 128 96.002 40 160.002 208 200.002 128 232.002 128\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></polyline></g>" : _vm.displayWeight === 'thin' ? "<g><polyline points=\"24.002 128 56.002 128 96.002 40 160.002 208 200.002 128 232.002 128\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></polyline></g>" : _vm.displayWeight === 'regular' ? "<g><polyline points=\"24.002 128 56.002 128 96.002 40 160.002 208 200.002 128 232.002 128\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></polyline></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__ = [];
/* style */
var __vue_inject_styles__ = undefined;
/* scoped */
var __vue_scope_id__ = undefined;
/* module identifier */
var __vue_module_identifier__ = "data-v-430fdfd5";
/* functional template */
var __vue_is_functional_template__ = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__ = /*#__PURE__*/normalizeComponent({
render: __vue_render__,
staticRenderFns: __vue_staticRenderFns__
}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, undefined, undefined);var script$1 = Vue__default['default'].extend({
name: "PhAddressBook",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$1 = script$1;
/* template */
var __vue_render__$1 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><circle cx=\"136\" cy=\"116\" r=\"32\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></circle> <line x1=\"32\" y1=\"108.00005\" x2=\"56\" y2=\"108.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <line x1=\"32\" y1=\"68.00005\" x2=\"56\" y2=\"68.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <line x1=\"32\" y1=\"148.00005\" x2=\"56\" y2=\"148.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <line x1=\"32\" y1=\"188.00005\" x2=\"56\" y2=\"188.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <rect x=\"40\" y=\"48\" width=\"192\" height=\"160\" rx=\"8\" transform=\"translate(264 -8) rotate(90)\" stroke-width=\"24\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" fill=\"none\"></rect> <path d=\"M91.99963,167.20785a60.00083,60.00083,0,0,1,88.00067-.00007\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><circle cx=\"136\" cy=\"112\" r=\"32\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></circle> <path 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\"></path> <line x1=\"32\" y1=\"108.00005\" x2=\"56\" y2=\"108.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"68.00005\" x2=\"56\" y2=\"68.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"148.00005\" x2=\"56\" y2=\"148.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"188.00005\" x2=\"56\" y2=\"188.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M87.99717,167.99792a60.00878,60.00878,0,0,1,96.004-.00225\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path> <rect x=\"40\" y=\"48\" width=\"192\" height=\"160\" rx=\"8\" transform=\"translate(264 -8) rotate(90)\" stroke-width=\"16\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" fill=\"none\"></rect></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M160,112a24,24,0,1,1-24-24A24.0275,24.0275,0,0,1,160,112Zm64-72V216a16.01833,16.01833,0,0,1-16,16H64a16.01833,16.01833,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.01833,16.01833,0,0,1,64,24H208A16.01833,16.01833,0,0,1,224,40ZM190.397,163.19141a67.80622,67.80622,0,0,0-27.42627-21.68067,40,40,0,1,0-53.94153-.00012,67.80949,67.80949,0,0,0-27.42858,21.68274,8,8,0,1,0,12.793,9.60937,52.0088,52.0088,0,0,1,83.21143-.00195,7.99961,7.99961,0,1,0,12.792-9.60937Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><circle cx=\"136\" cy=\"112\" r=\"32\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></circle> <line x1=\"32\" y1=\"108.00005\" x2=\"56\" y2=\"108.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <line x1=\"32\" y1=\"68.00005\" x2=\"56\" y2=\"68.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <line x1=\"32\" y1=\"148.00005\" x2=\"56\" y2=\"148.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <line x1=\"32\" y1=\"188.00005\" x2=\"56\" y2=\"188.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <path d=\"M87.99717,167.99792a60.00878,60.00878,0,0,1,96.004-.00225\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path> <rect x=\"40\" y=\"48\" width=\"192\" height=\"160\" rx=\"8\" transform=\"translate(264 -8) rotate(90)\" stroke-width=\"12\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" fill=\"none\"></rect></g>" : _vm.displayWeight === 'thin' ? "<g><circle cx=\"136\" cy=\"112\" r=\"32\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></circle> <line x1=\"32\" y1=\"108.00005\" x2=\"56\" y2=\"108.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <line x1=\"32\" y1=\"68.00005\" x2=\"56\" y2=\"68.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <line x1=\"32\" y1=\"148.00005\" x2=\"56\" y2=\"148.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <line x1=\"32\" y1=\"188.00005\" x2=\"56\" y2=\"188.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <path d=\"M87.99717,167.99792a60.00878,60.00878,0,0,1,96.004-.00225\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path> <rect x=\"40\" y=\"48\" width=\"192\" height=\"160\" rx=\"8\" transform=\"translate(264 -8) rotate(90)\" stroke-width=\"8\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" fill=\"none\"></rect></g>" : _vm.displayWeight === 'regular' ? "<g><circle cx=\"136\" cy=\"112\" r=\"32\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></circle> <line x1=\"32\" y1=\"108.00005\" x2=\"56\" y2=\"108.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"68.00005\" x2=\"56\" y2=\"68.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"148.00005\" x2=\"56\" y2=\"148.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <line x1=\"32\" y1=\"188.00005\" x2=\"56\" y2=\"188.00005\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M87.99717,167.99792a60.00878,60.00878,0,0,1,96.004-.00225\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path> <rect x=\"40\" y=\"48\" width=\"192\" height=\"160\" rx=\"8\" transform=\"translate(264 -8) rotate(90)\" stroke-width=\"16\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" fill=\"none\"></rect></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$1 = [];
/* style */
var __vue_inject_styles__$1 = undefined;
/* scoped */
var __vue_scope_id__$1 = undefined;
/* module identifier */
var __vue_module_identifier__$1 = "data-v-426c325a";
/* functional template */
var __vue_is_functional_template__$1 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$1 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$1,
staticRenderFns: __vue_staticRenderFns__$1
}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);var script$2 = Vue__default['default'].extend({
name: "PhAirplane",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$2 = script$2;
/* template */
var __vue_render__$2 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" opacity=\"0.2\"></path> <path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M240.22559,136v32a8.00013,8.00013,0,0,1-9.56934,7.84473L160.22559,161.7583v26.96143l13.47168,13.66357A8.00119,8.00119,0,0,1,176,208v24a7.99947,7.99947,0,0,1-10.9707,7.42773L128,224.61621,90.9707,239.42773A7.99953,7.99953,0,0,1,80,232V208a8.00035,8.00035,0,0,1,2.34277-5.65674L96,188.686V161.7583L25.56934,175.84473A8.00012,8.00012,0,0,1,16,168V136a7.99967,7.99967,0,0,1,4.42188-7.15527L96.01172,91.0498l.10058-43.06835a32,32,0,0,1,64,.01855l.10157,43.0498,75.58984,37.79493A7.99969,7.99969,0,0,1,240.22559,136Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path></g>" : _vm.displayWeight === 'thin' ? "<g><path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path></g>" : _vm.displayWeight === 'regular' ? "<g><path d=\"M128,216,88,232V200l16-16V152L24,168V136l80-40,.11255-48a24,24,0,0,1,48,0l.11255,48,80,40v32l-80-16v32L168,200v32Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$2 = [];
/* style */
var __vue_inject_styles__$2 = undefined;
/* scoped */
var __vue_scope_id__$2 = undefined;
/* module identifier */
var __vue_module_identifier__$2 = "data-v-0aeb140d";
/* functional template */
var __vue_is_functional_template__$2 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$2 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$2,
staticRenderFns: __vue_staticRenderFns__$2
}, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);var script$3 = Vue__default['default'].extend({
name: "PhAirplaneInFlight",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$3 = script$3;
/* template */
var __vue_render__$3 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><line x1=\"72\" y1=\"216\" x2=\"216\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" opacity=\"0.2\"></path> <line x1=\"72\" y1=\"216\" x2=\"216\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M224,216a8.00008,8.00008,0,0,1-8,8H72a8,8,0,0,1,0-16H216A8.00008,8.00008,0,0,1,224,216ZM208,100H153.75977L110.94824,53.29688A3.99911,3.99911,0,0,0,108,52H91.09961A12.00015,12.00015,0,0,0,79.71484,67.79492L90.4502,100H65.87305L47.07324,77.43945A4.001,4.001,0,0,0,44,76H26.752A11.99986,11.99986,0,0,0,15.25879,91.44824l14.06836,46.89649A35.77737,35.77737,0,0,0,63.80859,164H240a4.0002,4.0002,0,0,0,4-4V136A36.04061,36.04061,0,0,0,208,100Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><line x1=\"72\" y1=\"216\" x2=\"216\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path></g>" : _vm.displayWeight === 'thin' ? "<g><line x1=\"72\" y1=\"216\" x2=\"216\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path></g>" : _vm.displayWeight === 'regular' ? "<g><line x1=\"72\" y1=\"216\" x2=\"216\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M26.75225,80H44l20,24H96L83.50994,66.52982A8,8,0,0,1,91.09941,56H108l44,48h56a32,32,0,0,1,32,32v24H63.809a32,32,0,0,1-30.65044-22.80487L19.08963,90.29878A8,8,0,0,1,26.75225,80Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$3 = [];
/* style */
var __vue_inject_styles__$3 = undefined;
/* scoped */
var __vue_scope_id__$3 = undefined;
/* module identifier */
var __vue_module_identifier__$3 = "data-v-01136c5e";
/* functional template */
var __vue_is_functional_template__$3 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$3 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$3,
staticRenderFns: __vue_staticRenderFns__$3
}, __vue_inject_styles__$3, __vue_script__$3, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, undefined, undefined, undefined);var script$4 = Vue__default['default'].extend({
name: "PhAirplaneLanding",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$4 = script$4;
/* template */
var __vue_render__$4 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><line x1=\"96\" y1=\"216\" x2=\"240\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" opacity=\"0.2\"></path> <line x1=\"96\" y1=\"216\" x2=\"240\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M248,216a8.00008,8.00008,0,0,1-8,8H96a8,8,0,0,1,0-16H240A8.00008,8.00008,0,0,1,248,216Zm-24-28a4.00035,4.00035,0,0,0,4-4V148.32275a36.10691,36.10691,0,0,0-26.36523-34.68652l-46.97852-13.0498L123.47266,46.01562a4.00193,4.00193,0,0,0-2.208-1.81054l-13.46973-4.49024A12.00071,12.00071,0,0,0,92,51.09961V82.55908L66.75781,74.6709,51.5293,46.11768a4.00065,4.00065,0,0,0-2.26465-1.9126L35.79492,39.71484A12.00071,12.00071,0,0,0,20,51.09961v52.62988A36.11994,36.11994,0,0,0,46.294,138.396l176.62793,49.45605A4.00591,4.00591,0,0,0,224,188Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><line x1=\"96\" y1=\"216\" x2=\"240\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path></g>" : _vm.displayWeight === 'thin' ? "<g><line x1=\"96\" y1=\"216\" x2=\"240\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path></g>" : _vm.displayWeight === 'regular' ? "<g><line x1=\"96\" y1=\"216\" x2=\"240\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M24,103.72927V51.09941a8,8,0,0,1,10.52982-7.58947L48,48,64,78,96,88V51.09941a8,8,0,0,1,10.52982-7.58947L120,48l32,56,48.5646,13.49017A32,32,0,0,1,224,148.32274V184L47.37184,134.54412A32,32,0,0,1,24,103.72927Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$4 = [];
/* style */
var __vue_inject_styles__$4 = undefined;
/* scoped */
var __vue_scope_id__$4 = undefined;
/* module identifier */
var __vue_module_identifier__$4 = "data-v-4ba46c47";
/* functional template */
var __vue_is_functional_template__$4 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$4 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$4,
staticRenderFns: __vue_staticRenderFns__$4
}, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, undefined, undefined, undefined);var script$5 = Vue__default['default'].extend({
name: "PhAirplaneTakeoff",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$5 = script$5;
/* template */
var __vue_render__$5 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><line x1=\"24\" y1=\"216\" x2=\"168\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></line> <path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" opacity=\"0.2\"></path> <line x1=\"24\" y1=\"216\" x2=\"168\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M176,216a8.00008,8.00008,0,0,1-8,8H24a8,8,0,0,1,0-16H168A8.00008,8.00008,0,0,1,176,216ZM247.0957,89.4668,228.45605,66.686a35.81374,35.81374,0,0,0-46.11523-8.2334L139.53906,83.62988,81.26465,64.20508a4.0083,4.0083,0,0,0-2.83985.11816l-16.5,7.0708A12.00078,12.00078,0,0,0,58.625,91.34375L85.21191,115.272l-21.46679,12.2666L37.5752,116.32324a4.00251,4.00251,0,0,0-3.1504,0l-16.75292,7.17969a12.00032,12.00032,0,0,0-3.48145,19.78418h.001l37.69531,35.33935a35.78229,35.78229,0,0,0,42.7168,4.85938L246.01074,95.458a4.001,4.001,0,0,0,1.085-5.99121Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><line x1=\"24\" y1=\"216\" x2=\"168\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></line> <path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path></g>" : _vm.displayWeight === 'thin' ? "<g><line x1=\"24\" y1=\"216\" x2=\"168\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></line> <path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path></g>" : _vm.displayWeight === 'regular' ? "<g><line x1=\"24\" y1=\"216\" x2=\"168\" y2=\"216\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></line> <path d=\"M16.92713,140.36918,54.6225,175.70859a32,32,0,0,0,37.97,4.319L244,92,225.3607,69.21863a32,32,0,0,0-40.99128-7.31829L140,88,80,68,63.501,75.071a8,8,0,0,0-2.20037,13.29951L92,116,64,132,36,120l-16.7527,7.17973A8,8,0,0,0,16.92713,140.36918Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$5 = [];
/* style */
var __vue_inject_styles__$5 = undefined;
/* scoped */
var __vue_scope_id__$5 = undefined;
/* module identifier */
var __vue_module_identifier__$5 = "data-v-65a552e3";
/* functional template */
var __vue_is_functional_template__$5 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$5 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$5,
staticRenderFns: __vue_staticRenderFns__$5
}, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, undefined, undefined);var script$6 = Vue__default['default'].extend({
name: "PhAirplaneTilt",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$6 = script$6;
/* template */
var __vue_render__$6 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"24\"></path></g>" : _vm.displayWeight === 'duotone' ? "<g><path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" opacity=\"0.2\"></path> <path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : _vm.displayWeight === 'fill' ? "<g><path d=\"M215.01538,86.23437l-29.80762,27.98829,30.19824,83.043a8.00184,8.00184,0,0,1-1.86181,8.39161l-24,24A7.99924,7.99924,0,0,1,177.282,228.5127l-42.58691-62.33692-18.80762,17.33106V204a8.0008,8.0008,0,0,1-2.34326,5.65723l-20,20a7.99986,7.99986,0,0,1-13.23291-3.08789L67.38745,188.457l-38.064-12.87891a8.00081,8.00081,0,0,1-3.09326-13.23535l20-20A8.00235,8.00235,0,0,1,51.88745,140H72.574l18.75635-18.75684L27.45,78.65625a8.00073,8.00073,0,0,1-1.21973-12.31348l24-24a8.003,8.003,0,0,1,8.39111-1.86132l83.0625,30.20507,26.606-28.14062a7.98306,7.98306,0,0,1,.97071-1.17383,32.0006,32.0006,0,0,1,47.01806,43.34375A8.03536,8.03536,0,0,1,215.01538,86.23437Z\"></path></g>" : _vm.displayWeight === 'light' ? "<g><path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"12\"></path></g>" : _vm.displayWeight === 'thin' ? "<g><path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"8\"></path></g>" : _vm.displayWeight === 'regular' ? "<g><path d=\"M209.53911,80.402,175.88745,112l32,88-24,24-47.80786-69.97929L111.88745,176v24l-24,24L73.695,182.14581,31.88745,168l24-24h24l24-24-72-48,24-24,88,32L175.598,46.46089l-.68109.56855A24,24,0,1,1,208.858,80.97056Z\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"></path></g>" : "<!---->"))], 2);
};
var __vue_staticRenderFns__$6 = [];
/* style */
var __vue_inject_styles__$6 = undefined;
/* scoped */
var __vue_scope_id__$6 = undefined;
/* module identifier */
var __vue_module_identifier__$6 = "data-v-2c1c3757";
/* functional template */
var __vue_is_functional_template__$6 = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
var __vue_component__$6 = /*#__PURE__*/normalizeComponent({
render: __vue_render__$6,
staticRenderFns: __vue_staticRenderFns__$6
}, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);var script$7 = Vue__default['default'].extend({
name: "PhAirplay",
props: PropValidator,
inject: ContextGetter,
computed: {
displayWeight: function displayWeight() {
var _ref = this,
weight = _ref.weight,
contextWeight = _ref.contextWeight;
return weight !== null && weight !== void 0 ? weight : contextWeight;
},
displaySize: function displaySize() {
var _ref2 = this,
size = _ref2.size,
contextSize = _ref2.contextSize;
return size !== null && size !== void 0 ? size : contextSize;
},
displayColor: function displayColor() {
var _ref3 = this,
color = _ref3.color,
contextColor = _ref3.contextColor;
return color !== null && color !== void 0 ? color : contextColor;
},
displayMirrored: function displayMirrored() {
var _ref4 = this,
mirrored = _ref4.mirrored,
contextMirrored = _ref4.contextMirrored;
return (mirrored !== null && mirrored !== void 0 ? mirrored : contextMirrored) ? "scale(-1, 1)" : undefined;
}
}
});/* script */
var __vue_script__$7 = script$7;
/* template */
var __vue_render__$7 = function __vue_render__() {
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._ssrNode(" " + (_vm.displayWeight === 'bold' ? "<g><polygon points=\"128.002 160 176 216 80 216 128.002 160\" fill=\"none\"" + _vm._ssrAttr("stroke", _vm.displayColor) + " stroke-linecap=\"round\" stroke-linejoin=\"round\"