UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.04 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="M977.47392924 804.56257509L648.95462829 475.92055493c50.3148724-118.91490573 27.1209434-261.63733647-69.82722537-358.58550523s-239.67059948-120.14209775-358.46278602-69.82722537L377.00887894 203.97480559c31.90699225 31.90699225 31.90699225 83.57177585 0 115.47876809l-57.80074366 57.80074366c-31.90699225 31.90699225-83.57177585 31.90699225-115.47876812 0L47.38510514 220.78733609c-50.3148724 118.91490573-27.1209434 261.63733647 69.82722534 358.58550525s239.67059948 120.14209775 358.58550523 69.82722533l328.6420202 328.64202021c31.90699225 31.90699225 83.57177585 31.90699225 115.47876811 0l57.80074365-57.80074367c31.66155384-31.90699225 31.66155384-83.57177585-0.24543843-115.47876812z m0 0"/> </svg> ) } Vue.component('icon-spanner', Icon) export default Icon