wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.11 kB
JavaScript
/**
* 该文件由 .my/core/build/svg.js 生成
*/
import Vue from 'vue'
import globalConfig from '$ui/config'
const Icon = ({props}) => {
const attrs = {...globalConfig.svg, ...props}
return (
<svg {...{attrs: attrs}}>
<path d="M961.5 167.7L545.6 12.5c-10.8-4-22.2-6-33.5-6-11.4 0-22.8 2-33.7 6.1l-416.1 156C24.8 182.7 0 218.5 0 258.5v433.1c0 35.4 19.4 67.9 50.6 84.6l417.6 224.3c14.2 7.6 29.8 11.4 45.4 11.4 14.7 0 29.4-3.4 42.9-10.1l414.4-207.2c32.5-16.3 53.1-49.5 53.1-85.9v-451c0-40.1-24.9-76-62.5-90zM500.8 72.5c3.6-1.3 7.4-2 11.2-2 3.8 0 7.6 0.7 11.2 2l365.6 136.4c10.5 3.9 10.4 18.8-0.2 22.5l-344.5 123a95.55 95.55 0 0 1-64.6 0L136.3 231.8c-10.5-3.8-10.6-18.6-0.2-22.5L500.8 72.5zM80.9 719.8C70.5 714.2 64 703.4 64 691.6V308c0-16.6 16.4-28.2 32.1-22.6l352.1 125.7c19.1 6.8 31.9 24.9 31.9 45.2V894c0 18.1-19.4 29.7-35.4 21.1L80.9 719.8zM960 708.7c0 12.2-6.8 23.2-17.7 28.6L578.7 919.1c-16 8-34.7-3.6-34.7-21.5V456.4c0-20.3 12.8-38.4 31.9-45.2L928 285.5c15.6-5.6 32.1 6 32.1 22.6v400.6z"/>
</svg>
)
}
Vue.component('icon-component', Icon)
export default Icon