UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 413 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 512m-512 0a512 512 0 1 0 1024 0 512 512 0 1 0-1024 0Z"/> </svg> ) } Vue.component('icon-radio-on-fill', Icon) export default Icon