UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 931 B
/** * 该文件由 .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 128c-212.1 0-384 171.9-384 384s171.9 384 384 384 384-171.9 384-384-171.9-384-384-384z m50.9 389.7l173.1 173c12.5 12.5 12.5 32.8 0 45.3-6.3 6.3-14.4 9.4-22.6 9.4s-16.4-3.1-22.6-9.4L517.7 562.9c-3.1-3.1-8.2-3.1-11.3 0L333.3 736c-12.5 12.5-32.8 12.5-45.3 0-6.3-6.3-9.4-14.4-9.4-22.6s3.1-16.4 9.4-22.6l173.1-173.1c3.1-3.1 3.1-8.2 0-11.3L288 333.3c-12.5-12.5-12.5-32.8 0-45.3 6.3-6.3 14.4-9.4 22.6-9.4s16.4 3.1 22.6 9.4l173.1 173.1c3.1 3.1 8.2 3.1 11.3 0L690.7 288c12.5-12.5 32.8-12.5 45.3 0 6.3 6.3 9.4 14.4 9.4 22.6s-3.1 16.4-9.4 22.6L562.9 506.3a8.15 8.15 0 0 0 0 11.4z"/> </svg> ) } Vue.component('icon-window-close-full', Icon) export default Icon