UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.57 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 272c-132.5 0-240 107.5-240 240s107.5 240 240 240 240-107.5 240-240-107.5-240-240-240z m0 336c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zM183.5 908.4l40.9 40.9c4.4 4.4 2.4 11.8-3.6 13.4l-204.4 54.8c-5.9 1.6-11.4-3.8-9.8-9.8l54.8-204.4c1.6-5.9 9-7.9 13.4-3.6l40.9 40.9c6.2 6.2 16.4 6.2 22.6 0l110-110c3.1-3.1 8.2-3.1 11.3 0l33.9 33.9c3.1 3.1 3.1 8.2 0 11.3l-110 110c-6.3 6.2-6.3 16.3 0 22.6zM802.1 951.8l40.9-40.9c6.2-6.2 6.2-16.4 0-22.6L730.5 775.8c-3.1-3.1-3.1-8.2 0-11.3l33.9-33.9c3.1-3.1 8.2-3.1 11.3 0L888.3 843c6.2 6.2 16.4 6.2 22.6 0l40.9-40.9c4.4-4.4 11.8-2.4 13.4 3.6l54.8 204.4c1.6 5.9-3.8 11.4-9.8 9.8l-204.4-54.8c-6-1.5-8-9-3.7-13.3zM293.5 259.4l-33.9 33.9c-3.1 3.1-8.2 3.1-11.3 0l-113-113c-6.2-6.2-16.4-6.2-22.6 0l-40.9 40.9c-4.4 4.4-11.8 2.4-13.4-3.6L3.6 13.2C2 7.3 7.4 1.8 13.4 3.4l204.4 54.8c5.9 1.6 7.9 9 3.6 13.4l-40.9 40.9c-6.2 6.2-6.2 16.4 0 22.6l113 113c3.1 3.1 3.1 8.2 0 11.3zM1020.4 13.2l-54.7 204.4c-1.6 5.9-9 7.9-13.4 3.6l-46.5-46.5c-3.1-3.1-8.2-3.1-11.3 0L775.3 293.8c-3.1 3.1-8.2 3.1-11.3 0l-34-33.9c-3.1-3.1-3.1-8.2 0-11.3l119.1-119.1c3.1-3.1 3.1-8.2 0-11.3l-46.5-46.5c-4.4-4.4-2.4-11.8 3.6-13.4l204.4-54.8c6-1.7 11.4 3.8 9.8 9.7zM512 512m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z"/> </svg> ) } Vue.component('icon-spread-fill', Icon) export default Icon