UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.11 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="M512 157c-201.1 0-382.1 86.3-507.9 223.9l72 63.5c5.6-6.1 11.4-12.1 17.3-18 26.8-26.8 56.3-51.2 87.7-72.3 31.6-21.4 65.5-39.7 100.5-54.6C354.5 268.6 432 253 512 253s157.5 15.6 230.4 46.5c35.1 14.8 68.9 33.2 100.5 54.6 31.4 21.2 60.9 45.5 87.7 72.3 5.9 5.9 11.6 11.9 17.3 18l72-63.5C894.1 243.3 713.1 157 512 157zM512 317c-153.3 0-291.4 65.4-387.9 169.8l72 63.5c3.4-3.6 6.9-7.2 10.4-10.8 39.7-39.7 85.9-70.9 137.3-92.6C397.1 424.4 453.6 413 512 413s114.9 11.4 168.1 33.9c51.4 21.8 97.6 52.9 137.3 92.6 3.5 3.5 7 7.1 10.4 10.8l72-63.5C803.4 382.4 665.3 317 512 317zM512 509c-96 0-182.6 40.3-243.9 104.8l72.1 63.6 2.1-2.1C387.6 630 447.9 605 512 605s124.4 25 169.7 70.3l2.1 2.1 72.1-63.6C694.6 549.3 608 509 512 509zM512 736m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"/> </svg> ) } Vue.component('icon-wifi-fill', Icon) export default Icon