UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.35 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="M584 0C341.4 0 144.1 197.1 144 439.7c0 85.9 24.5 166 67 233.7 15.9 25.4 12.3 58.3-8.8 79.5l-7.2 7.2c-1.6 1.6-4.1 1.6-5.7 0L88.6 659.5c-3.1-3.1-8.2-3.1-11.3 0L20.7 716c-3.1 3.1-3.1 8.2 0 11.3L121.4 828c1.6 1.6 1.6 4.1 0 5.7L4.7 950.4c-3.1 3.1-3.1 8.2 0 11.3l56.6 56.6c3.1 3.1 8.2 3.1 11.3 0l116.7-116.7c1.6-1.6 4.1-1.6 5.7 0L297.4 1004c3.1 3.1 8.2 3.1 11.3 0l56.6-56.6c3.1-3.1 3.1-8.2 0-11.3L262.8 833.7c-1.6-1.6-1.6-4.1 0-5.7l7-7c21.2-21.2 54.3-24.7 79.6-8.7 68.7 43.4 150.3 68.3 237.8 67.7 242.9-1.7 437.6-198.6 436.8-441.5C1023.2 196.2 826.5 0 584 0z m287.5 561.4c-15.7 37.1-38.2 70.5-66.9 99.2-28.7 28.7-62.1 51.2-99.2 66.9C667 743.8 626.2 752 584 752s-83-8.2-121.4-24.5c-37.1-15.7-70.5-38.2-99.2-66.9-28.7-28.7-51.2-62.1-66.9-99.2C280.2 523 272 482.2 272 440s8.2-83 24.5-121.4c15.7-37.1 38.2-70.5 66.9-99.2 28.7-28.7 62.1-51.2 99.2-66.9C501 136.2 541.8 128 584 128s83 8.2 121.4 24.5c37.1 15.7 70.5 38.2 99.2 66.9 28.7 28.7 51.2 62.1 66.9 99.2C887.8 357 896 397.8 896 440s-8.2 83-24.5 121.4z"/> </svg> ) } Vue.component('icon-women-fill', Icon) export default Icon