wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.09 kB
JavaScript
/**
* 该文件由 .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="M411.939086 63.97501L726.716127 451.223741c13.894572 17.093323 21.491605 38.584928 21.491604 60.476376 0 21.99141-7.597032 43.483014-21.491604 60.476377L411.639203 960.02499H337.068333l299.08317-367.556423c38.085123-46.781726 38.085123-114.655213 0.099961-161.436939L337.967981 63.97501h73.971105z m15.194065-63.97501H220.31394c-6.697384 0-10.4959 7.796954-6.197579 12.994924l372.45451 458.420929c19.092542 23.490824 19.092542 57.177665 0 80.76845L213.116751 1011.005076c-4.298321 5.19797-0.499805 12.994924 6.197579 12.994924h207.418977c9.596251 0 18.792659-4.298321 24.790317-11.795392l324.673174-399.64389c47.781335-58.77704 47.781335-142.944162 0-201.721202L452.023428 11.795392C445.92581 4.298321 436.829364 0 427.133151 0z"/>
</svg>
)
}
Vue.component('icon-bold-arrow-right', Icon)
export default Icon