wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 832 B
JavaScript
/**
* 该文件由 .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="M904 314.9l22.6 22.6c6.2 6.2 6.2 16.4 0 22.6L436.8 849.9c-6.2 6.2-16.4 6.2-22.6 0L335 770.7 97.4 533.2c-6.2-6.2-6.2-16.4 0-22.6L120 488c6.2-6.2 16.4-6.2 22.6 0l237.6 237.6 22.6 22.6c12.5 12.5 32.8 12.5 45.3 0l22.6-22.6L881.3 315c6.3-6.3 16.4-6.3 22.7-0.1zM419.9 674.6L142.7 397.4c-6.2-6.2-16.4-6.2-22.6 0L6.9 510.5c-6.2 6.2-6.2 16.4 0 22.6L289.8 816l90.5 90.5c25 25 65.5 25 90.5 0l546.3-546.3c6.2-6.2 6.2-16.4 0-22.6L904 224.4c-6.2-6.2-16.4-6.2-22.6 0L431.2 674.6c-3.1 3.1-8.2 3.1-11.3 0z"/>
</svg>
)
}
Vue.component('icon-ok', Icon)
export default Icon