wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.29 kB
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="M930.6 206.5L817.5 93.4c-6.2-6.2-16.4-6.2-22.6 0L523.3 364.9c-6.2 6.2-16.4 6.2-22.6 0L229.2 93.4c-6.2-6.2-16.4-6.2-22.6 0L93.4 206.5c-6.2 6.2-6.2 16.4 0 22.6l271.5 271.5c6.2 6.2 6.2 16.4 0 22.6L93.4 794.8c-6.2 6.2-6.2 16.4 0 22.6l113.1 113.1c6.2 6.2 16.4 6.2 22.6 0L500.6 659c6.2-6.2 16.4-6.2 22.6 0l271.5 271.5c6.2 6.2 16.4 6.2 22.6 0l113.1-113.1c6.2-6.2 6.2-16.4 0-22.6L659.1 523.3c-6.2-6.2-6.2-16.4 0-22.6l271.5-271.5c6.3-6.3 6.3-16.4 0-22.7z m-84.8 605.3l-33.9 33.9c-3.1 3.1-8.2 3.1-11.3 0L523.3 568.6c-6.2-6.2-16.4-6.2-22.6 0l-33.9 33.9-243.3 243.3c-3.1 3.1-8.2 3.1-11.3 0l-33.9-33.9c-3.1-3.1-3.1-8.2 0-11.3l243.3-243.2 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6L421.6 467 178.2 223.5c-3.1-3.1-3.1-8.2 0-11.3l33.9-33.9c3.1-3.1 8.2-3.1 11.3 0l243.3 243.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0l33.9-33.9 243.2-243.3c3.1-3.1 8.2-3.1 11.3 0l33.9 33.9c3.1 3.1 3.1 8.2 0 11.3l-243 243.3-33.9 33.9c-6.2 6.2-6.3 16.4 0 22.6l277.2 277.2c3.1 3.1 3.1 8.2 0 11.3z"/>
</svg>
)
}
Vue.component('icon-multiply', Icon)
export default Icon