wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.43 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="M988 508c5.1-4.8 9.6-9.2 13.7-13.1 12.8-12.6 12.8-33.2 0-45.7C937.8 386.4 742.7 216 512 216S86.2 386.4 22.2 449.2c-12.8 12.6-12.8 33.2 0 45.7 4 4 8.6 8.4 13.7 13.1a838.12 838.12 0 0 0-25.4 24.8c-6.1 6.2-6.1 16.1 0 22.3C58.6 604.5 264.9 800 512 800s453.4-195.5 501.4-244.8c6.1-6.2 6.1-16.1 0-22.3-6-6.3-14.5-14.8-25.4-24.9zM512 720c-114.9 0-208-93.1-208-208 0-48.9 16.9-93.8 45.1-129.3C404.9 362.3 459.6 352 512 352c52.4 0 107.1 10.3 162.9 30.6C703.1 418.2 720 463.1 720 512c0 114.9-93.1 208-208 208z m459.3-240.2c-3.9 3.8-10.1 3.9-14.2 0.4C868.9 404.3 702.6 288 512 288c-190.6 0-356.9 116.3-445.1 192.2-4.1 3.5-10.3 3.4-14.2-0.4l-0.2-0.2c-4.4-4.2-4.4-11.1 0-15.3 24.8-23.7 64.7-58.9 115.6-94 51.8-35.8 104.3-64.2 156.2-84.5 64-25.1 127.1-37.8 187.6-37.8 60.2 0 123.1 12.6 186.8 37.5 51.7 20.2 104.1 48.4 155.8 84 51.3 35.3 91.8 71 116.9 94.9 4.4 4.2 4.4 11.1 0 15.3l-0.1 0.1zM635.8 438.4c-8-23.6-26.6-42.2-50.2-50.2-8-2.7-16.6-4.2-25.6-4.2-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80c0-9-1.5-17.6-4.2-25.6zM560 480c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"/>
</svg>
)
}
Vue.component('icon-eye-fill', Icon)
export default Icon