UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.03 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="M497.88173 511.9v448h-48v-432c0-8.8-7.2-16-16-16h-68.7c8.1 53.6 42.1 91.4 20.7 144-23.9 58.8-102.2 99.6-173 99.6-12 0-23.7-1.2-35-3.6C47.48173 723.6-21.31827 521.4 5.88173 367.9 33.18173 213.8 165.18173 63.7 297.48173 63.7c2.8 0 5.6 0.1 8.4 0.2 55.4 2.7 131.4 33.3 160 96 22.5 49.2 7.8 100.7 0 128-25 87.5-75 89.6-96 160h64c35.3 0 64 28.7 64 64zM847.98173 751.9c-11.2 2.5-23 3.6-35 3.6-70.8 0-149.1-40.8-173-99.6-21.4-52.6 12.7-90.4 20.7-144H593.88173c-8.8 0-16 7.2-16 16v432.3h-48V511.9h-0.3c0-35.3 28.7-64 64-64h62.4c-21-70.4-71-72.5-96-160-7.8-27.3-22.5-78.8 0-128 28.6-62.7 104.6-93.3 160-96 2.8-0.1 5.6-0.2 8.4-0.2 132.3 0 264.3 150.1 291.6 304.2 27.2 153.5-41.6 355.7-172 384z"/> </svg> ) } Vue.component('icon-kidney-fill', Icon) export default Icon