UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 948 B
/** * 该文件由 .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="M938.13361 831c-42.4 35.5-110 52.5-189.2 52.5-119.5 0-265.6-38.6-391.7-109.8C140.03361 651-21.96639 429.2 2.43361 290.8c10.2-57.9 62.1-137.4 86.1-149.2 14.7-7.2 29.4-7.9 29.4-7.9 1.1-0.1 2.2-0.1 3.2-0.1 23.5 0 41.4 12 48.8 17.7l128.4 84.6 24.6 16.2c5.2 4.4 14.3 12.8 22.6 25.5 45.6 70-11.9 153.5-3.7 221.6 4 33.4 25.4 75.1 94.8 119.6h0.1c44.2 22.9 78.8 31.1 106.1 31.1 17.9 0 32.6-3.5 44.9-8.8C649.33361 614.8 692.23361 527 771.93361 527c1.9 0 3.9 0.1 5.9 0.2 15.1 0.8 26.9 4.5 33.3 6.8l26.4 13.2c45.8 23 91.7 46 137.5 68.9 9 3.8 29.7 13.9 41.2 36.2 0 0 6.8 13.1 7.9 29.4 4.9 70.8-63 130-86 149.3z"/> </svg> ) } Vue.component('icon-call-fill', Icon) export default Icon