mdi-vue
Version:
Material Design Icons for Vue.js
113 lines (102 loc) • 2.3 kB
JavaScript
import { _ as __vue_normalize__ } from './normalize-component-26d614d1.js';
//
//
//
//
//
//
//
//
//
//
//
//
//
//
var script = {
name: 'mdi-telescope',
props: {
width: {
type: [Number, String],
default: 24
},
height: {
type: [Number, String],
default: 24
},
viewBox: {
type: [String],
default: '0 0 24 24'
},
xmlns: {
type: String,
default: 'xmlns="http://www.w3.org/2000/svg"'
},
ariaLabel: {
type: String,
default: 'Telescope icon'
},
role: {
type: String,
default: 'img'
}
}
};
/* script */
const __vue_script__ = script;
/* template */
var __vue_render__ = function(_h, _vm) {
var _c = _vm._c;
return _c(
"span",
{
staticClass: "mdi mdi-telescope",
attrs: { role: _vm.props.role, "aria-label": _vm.props.ariaLabel }
},
[
_c(
"svg",
{
attrs: {
fill: "currentColor",
width: _vm.props.width,
height: _vm.props.height,
viewBox: _vm.props.viewBox,
xmlns: _vm.props.xmlns
}
},
[
_c("path", {
attrs: {
d:
"M21.9,8.9L20.2,9.9L16.2,3L17.9,2L21.9,8.9M9.8,7.9L12.8,13.1L18.9,9.6L15.9,4.4L9.8,7.9M11.4,12.7L9.4,9.2L5.1,11.7L7.1,15.2L11.4,12.7M2.1,14.6L3.1,16.3L5.7,14.8L4.7,13.1L2.1,14.6M12.1,14L11.8,13.6L7.5,16.1L7.8,16.5C8,16.8 8.3,17.1 8.6,17.3L7,22H9L10.4,17.7H10.5L12,22H14L12.1,16.4C12.6,15.7 12.6,14.8 12.1,14Z"
}
})
]
)
]
)
};
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__ = true;
/* style inject */
/* style inject SSR */
var Telescope = __vue_normalize__(
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
__vue_inject_styles__,
__vue_script__,
__vue_scope_id__,
__vue_is_functional_template__,
__vue_module_identifier__,
undefined,
undefined
);
export default Telescope;