UNPKG

vue-icon-packs

Version:
141 lines (130 loc) 5.06 kB
// // var script = { name: 'SBrain'}; 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__ = script; /* template */ var __vue_render__ = function() { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c( "svg", { attrs: { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor" } }, [ _c("path", { attrs: { d: "M3.299 17.596c.432 1.332 1.745 2.182 3.146 2.182H6.5C6.756 21.044 7.878 22 9.223 22c.457 0 .884-.115 1.262-.313C10.808 21.517 11 21.17 11 20.805V3.027c0-.471-.324-.89-.785-.983C9.758 1.951 9.249 2 8.736 2.245 7.992 2.601 7.556 3.396 7.556 4.223v.055C7.378 4.244 7.188 4.223 7 4.223 5.467 4.223 4.223 5.467 4.223 7c0 .645.222 1.244.589 1.711C3.223 8.956 2 10.333 2 12c0 1.178.611 2.211 1.533 2.812C3.103 15.583 2.962 16.558 3.299 17.596zM19.188 8.711C19.556 8.244 19.777 7.645 19.777 7c0-1.533-1.244-2.777-2.777-2.777-.188 0-.378.021-.556.055V4.223c0-.826-.437-1.622-1.181-1.978C14.751 2 14.242 1.951 13.785 2.044 13.324 2.138 13 2.557 13 3.027v17.777c0 .365.192.712.516.882C13.894 21.885 14.32 22 14.777 22c1.345 0 2.467-.956 2.723-2.223h.056c1.4 0 2.714-.85 3.146-2.182.337-1.038.196-2.013-.234-2.784C21.389 14.211 22 13.178 22 12 22 10.333 20.777 8.956 19.188 8.711z" } }) ] ) }; var __vue_staticRenderFns__ = []; __vue_render__._withStripped = true; /* style */ const __vue_inject_styles__ = undefined; /* scoped */ const __vue_scope_id__ = undefined; /* module identifier */ const __vue_module_identifier__ = undefined; /* functional template */ const __vue_is_functional_template__ = false; /* style inject */ /* style inject SSR */ /* style inject shadow dom */ const __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 ); export default __vue_component__;