UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.74 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="M1007.906287 7.197189C1001.808668 2.998829 994.811402 0.799688 987.214369 0.799688 980.616947 0.799688 974.619289 2.499024 968.921515 5.997657L18.89262 554.083561C5.897696 561.380711-0.199922 572.576337 0.599766 587.870363c0.99961 15.69387 8.696603 26.18977 22.791097 31.4877l216.415463 88.765326c5.597813 2.299102 11.995314 1.199531 16.493557-2.698945l602.864506-521.796174-478.912925 586.970715c-9.296369 11.395549-14.394377 25.689965-14.394377 40.484186v176.33112c0 7.696993 2.299102 14.594299 6.697384 20.891839 4.298321 6.397501 10.196017 10.695822 17.393206 13.394768 3.598594 1.499414 7.796954 2.299102 12.695041 2.299102 11.795392 0 21.091761-4.19836 27.989066-13.094885L553.883639 860.663803c8.896525-10.895744 23.790707-14.594299 36.785631-9.296368l236.707536 96.762202c4.898087 1.899258 9.496291 2.898868 13.69465 2.898867 6.397501 0 12.395158-1.699336 17.693089-4.598203 10.196017-6.097618 16.393596-14.69426 18.292854-25.689965l146.142913-876.957439c2.299102-15.194065-2.598985-27.489262-15.294025-36.585708zM236.707536 637.650918L99.561109 581.372901l606.563061-349.963295-469.416634 406.241312zM819.679813 875.757907l-226.711441-92.563842-32.787193-13.394768c-6.497462-2.698946-13.994533-0.799688-18.392815 4.698165l-22.491214 27.389301L429.832097 910.944162v-77.169855c0-14.69426 5.098009-28.988676 14.394377-40.484186l438.5287-537.590004 50.480281-61.775869L819.679813 875.757907z"/> </svg> ) } Vue.component('icon-paper', Icon) export default Icon