UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 2.69 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="M571.588362 347.432142c22.395626-17.796524 36.692833-45.291154 36.392892-76.18512-0.499902-51.889865-42.691662-94.381566-94.581527-95.081429-53.589533-0.699863-97.38098 42.491701-97.380981 95.981253 0 30.394064 14.097247 57.488772 36.092951 74.985355 11.397774 9.098223 15.297012 24.795157 9.398164 38.09256l-284.944346 638.675259H240.053115c25.29506 0 48.190588-14.89709 58.388596-37.8926l82.983792-186.063659h260.849053l82.983792 186.063659c10.297989 23.095489 33.193517 37.892599 58.388596 37.8926h63.587581l-284.944347-638.675259c-5.698887-13.097442-2.09959-28.794376 9.298184-37.792619zM512 507.70084l30.494044 68.386643h-61.088069l30.594025-68.386643zM424.417106 704.062488l14.297208-31.993751h146.671353l14.297207 31.993751H424.417106zM762.351103 100.780316L709.761375 137.173208c9.098223 13.297403 16.796719 27.394649 23.095489 42.391721 12.69752 29.894161 19.09627 61.687952 19.09627 94.581527 0 32.793595-6.39875 64.587385-19.09627 94.581527-6.29877 14.89709-13.997266 29.094318-23.095489 42.39172l52.589728 36.392892C796.144503 398.122242 815.940637 338.4339 815.940637 274.146456s-19.796134-123.975786-53.589534-173.36614z m-452.111697 33.69342l-52.589728-36.392892C222.556532 147.871119 202.060535 208.659246 202.060535 274.146456s20.495997 126.275337 55.489162 176.165592l52.589729-36.392892c-9.898067-14.097247-18.296426-29.194298-25.095099-45.191173-12.59754-29.994142-18.99629-61.787932-18.99629-94.581527s6.39875-64.687366 19.096271-94.581527c6.698692-15.996876 15.097051-31.093927 25.095098-45.091193zM908.022652 0l-52.589729 36.392892c15.596954 22.795548 28.994337 47.190783 39.792228 72.885765C916.920914 160.468658 927.918766 214.958016 927.918766 271.147042s-10.997852 110.678383-32.693615 161.868385c-11.497754 27.194689-25.794962 52.98965-42.691661 76.984964l52.589728 36.392892c54.689318-77.984769 86.78305-172.866237 86.78305-275.246241 0-100.580355-30.993946-193.962117-83.883616-271.147042zM96.081234 271.147042c0-56.189026 10.997852-110.678383 32.693615-161.868385 10.897872-25.694981 24.195274-50.090217 39.792228-72.885765L115.977348 0C63.087678 77.184925 32.093732 170.566686 32.093732 271.147042c0 102.380004 32.093732 197.261472 86.683069 275.246241l52.589729-36.392892c-16.8967-23.995313-31.093927-49.690295-42.691662-76.984964C107.079086 381.825425 96.081234 327.336067 96.081234 271.147042z"/> </svg> ) } Vue.component('icon-base-signal-fill', Icon) export default Icon