UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.51 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="M1024.19998 286.072063v45.195587c-8.29919 136.08671-38.39625 243.776194-63.99375 315.869153 0 0-52.494874 147.585587-192.281223 312.869446-19.398106 22.897764-55.894542 63.193829-104.289815 63.993751h-1.199883c-6.899326 0-23.297725-0.999902-40.396055-9.699053-31.696905-16.198418-49.295186-49.995118-49.295186-80.59213 0-48.195293 0-180.682355-60.594083-180.682355s-60.594083 132.487062-60.594082 180.682355c0 30.597012-17.598281 64.393712-49.295186 80.59213-3.299678 1.699834-17.998242 9.599063-41.695928 9.699053h-0.499952c-52.894834 0-95.990626-38.896202-120.088272-63.993751C126.487648 841.817791 63.993751 648.236696 63.993751 648.236696c-23.997656-74.192755-51.994922-182.082219-63.993751-316.969046v-45.195587C0 129.487355 130.287277 0 287.871888 0c35.396543 0 66.193536 4.29958 66.193535 4.29958C381.962699 11.198906 402.860658 23.097744 415.959379 31.996875c10.798945 8.099209 45.495557 31.996875 95.990626 31.996876 13.498682 0 55.594571-1.699834 95.990626-31.996876 13.998633-9.099111 36.296455-21.29792 65.993555-28.097256 0 0 30.796992-3.899619 65.493604-3.899619 157.484621 0 287.771897 129.487355 284.77219 286.072063zM511.950005 47.995313z"/> </svg> ) } Vue.component('icon-tooth-fill', Icon) export default Icon