UNPKG

wangbd-myui

Version:

MY前端基础框架核心组件库

21 lines (15 loc) 1.24 kB
/** * 该文件由 .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="M976 544.1c0 22.6-1.5 44.9-4.3 66.7-1.1 8.6-9.4 14.3-17.9 12.4l-47-10.7-31.3-7.2-62.6-14.3-274.4-62.7c-3.2-0.7-4.2-4.7-1.8-6.9l280-253.7 35.7-32.4c6.4-5.8 16.5-4.9 21.6 2.1 64.1 85.4 102 191.6 102 306.7zM773.6 198.5c6.5 5.8 6.4 16 0 21.8L738 252.6 469.5 496c-1.6 1.5-4.2 1.4-5.7-0.3L255 260.8l-32-36-10.6-12-21.3-24c-5.8-6.5-4.6-16.7 2.5-21.8 76.2-54.7 169.6-87 270.5-87 118.9 0.1 227.4 44.9 309.5 118.5zM856.1 683.3c-57.2 161.1-210.8 276.5-391.4 276.8C234.1 960.5 48 774.7 48 544.2 48 437.9 87.8 341 153.3 267.5c5.9-6.6 16.2-6.6 22 0l31.9 35.9L439.7 565l0.4 0.4c0.5 0.5 1.2 1.3 1.7 1.8 0.2 0.2 0.4 0.3 0.5 0.5l0.2 0.2c0.3 0.3 0.6 0.5 0.9 0.8 1.2 1 2.5 2 3.9 2.8 0.2 0.2 0.5 0.3 0.7 0.4l1.8 0.9c0.2 0.1 0.3 0.2 0.5 0.2 0.8 0.4 1.5 0.7 2.3 1 0.2 0.1 0.4 0.2 0.7 0.2l0.9 0.3c0.4 0.1 0.7 0.2 1.1 0.3 0.4 0.1 0.9 0.2 1.3 0.3 0.1 0 0.1 0 0.2 0.1l341.8 78.1 46.8 10.7c8.7 2.1 13.7 11 10.7 19.3z"/> </svg> ) } Vue.component('icon-pie-chart-fill', Icon) export default Icon