UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.31 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="M512 0C229.2 0 0 229.2 0 512s229.2 512 512 512 512-229.2 512-512S794.8 0 512 0z m-2 864c-194.4 0-352-157.6-352-352s157.6-352 352-352 352 157.6 352 352-157.6 352-352 352zM775.4 399.9c-14.5-34.3-35.3-65.1-61.7-91.6-26.5-26.5-57.3-47.2-91.6-61.7-35.5-15-73.2-22.6-112.1-22.6s-76.6 7.6-112.1 22.6c-34.3 14.5-65.1 35.3-91.6 61.7-26.5 26.5-47.2 57.3-61.7 91.6-15 35.5-22.6 73.2-22.6 112.1 0 38.9 7.6 76.6 22.6 112.1 14.5 34.3 35.3 65.1 61.7 91.6 26.5 26.5 57.3 47.2 91.6 61.7 35.5 15 73.2 22.6 112.1 22.6s76.6-7.6 112.1-22.6c34.3-14.5 65.1-35.3 91.6-61.7 26.5-26.5 47.2-57.3 61.7-91.6 15-35.5 22.6-73.2 22.6-112.1 0-38.9-7.6-76.6-22.6-112.1zM511.6 688c-97.2 0-176-78.8-176-176s78.8-176 176-176 176 78.8 176 176-78.8 176-176 176zM623.6 512c0 29.9-11.7 58-32.8 79.2-21.2 21.1-49.3 32.8-79.2 32.8-29.9 0-58-11.7-79.2-32.8-21.2-21.2-32.8-49.3-32.8-79.2 0-29.9 11.7-58 32.8-79.2 21.2-21.2 49.3-32.8 79.2-32.8 29.9 0 58 11.6 79.2 32.8 21.2 21.2 32.8 49.3 32.8 79.2z"/> </svg> ) } Vue.component('icon-bullseye-fill', Icon) export default Icon