wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.23 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="M986.3 218.9c50-50 50-131 0-181C973.8 25.3 959.4 16 944 9.7 928.6 3.4 912.2 0.3 895.8 0.3c-32.8 0-65.5 12.5-90.5 37.5l-56.6 56.6c-12.5 12.5-32.8 12.5-45.3 0s-32.8-12.5-45.2 0c-12.5 12.5-12.5 32.8 0 45.2l19.8 19.8c1.6 1.6 1.6 4.1 0 5.7L192.6 650.5c-21.2 21.2-37.1 47-46.6 75.4L123.3 794c-5 15-1.1 31.5 10.1 42.6 1.2 1.2 1.8 2.8 1.8 4.4 0 1.6-0.6 3.2-1.8 4.4l-90.9 90.9c-23.4 23.4-23.4 61.4 0 84.8 0.8 0.8 1.8 1.2 2.8 1.2 1 0 2.1-0.4 2.8-1.2l130.5-130.5c2.5-2.5 6.4-2.5 8.9 0 4 4 8.6 7 13.6 9.1 5 2.1 10.4 3.1 15.8 3.1 4.4 0 8.8-0.7 13.2-2.1l68.2-22.7c28.4-9.5 54.2-25.4 75.4-46.6L859.1 346c1.6-1.6 4.1-1.6 5.7 0l19.8 19.8c12.5 12.5 32.8 12.5 45.2 0 12.5-12.5 12.5-32.8 0-45.2-6.3-6.3-9.4-14.4-9.4-22.6s3.1-16.4 9.4-22.6l56.5-56.5z m-172.5 82L590.7 524c-1.6 1.6-4.1 1.6-5.7 0l-84.8-84.8c-1.6-1.6-1.6-4.1 0-5.7l223.1-223.1c1.6-1.6 4.1-1.6 5.7 0l84.8 84.8c1.6 1.6 1.6 4.1 0 5.7z"/>
</svg>
)
}
Vue.component('icon-dropper-fill', Icon)
export default Icon