UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.5 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.637872 0 0.749634 228.888238 0.749634 511.250366s228.888238 511.250366 511.250366 511.250366 511.250366-228.888238 511.250366-511.250366S794.362128 0 512 0z m166.31879 835.292143C617.748365 754.431625 522.594827 752.132748 512 752.132748c-101.050659 0-159.921913 74.663543-166.31879 83.159395-10.594827 14.093119-30.685017 16.991703-44.778135 6.396876-14.093119-10.594827-16.991703-30.685017-6.396877-44.778136 5.597267-7.49634 26.686969-33.883455 61.769839-58.5714C402.953245 705.55549 456.82694 688.163982 512 688.163982c9.395412 0 43.078965 0.999512 83.859053 14.293021 54.273499 17.691362 100.550903 50.275451 133.634749 94.45388 10.594827 14.093119 7.696242 34.183309-6.396877 44.778136-14.093119 10.594827-34.183309 7.696242-44.778135-6.396876zM264.121035 352.327965c39.780576 0 71.964861 32.184285 71.964861 71.964861s-32.184285 71.964861-71.964861 71.964861-71.964861-32.184285-71.964861-71.964861 32.184285-71.964861 71.964861-71.964861z m495.75793 143.929722c-39.780576 0-71.964861-32.184285-71.964861-71.964861s32.184285-71.964861 71.964861-71.964861 71.964861 32.184285 71.964861 71.964861-32.184285 71.964861-71.964861 71.964861z"/> </svg> ) } Vue.component('icon-sad-full', Icon) export default Icon