wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.17 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="M51.87109428 665.3763019h766.88150955c61.35052074 0 115.03222645-53.68170565 115.03222641-115.03222644v-460.1289057c0-23.00644525 15.33763018-38.34407546 38.34407548-38.34407548s38.34407546 15.33763018 38.34407546 38.34407548v460.1289057c0 107.36341134-84.35696609 191.72037738-191.72037735 191.72037736H51.87109428v-76.68815092z"></path><path d="M281.93554718 972.12890572c-7.66881507 0-23.00644525 0-30.67526045-7.66881513l-230.06445283-230.06445283c-15.33763018-15.33763018-15.33763018-38.34407546 0-53.68170564l230.06445283-230.06445286c15.33763018-15.33763018 38.34407546-15.33763018 53.68170572 0s15.33763018 38.34407546 0 53.68170567l-199.3891925 199.38919245 199.3891925 199.38919252c15.33763018 15.33763018 15.33763018 38.34407546 0 53.68170562 0 15.33763018-15.33763018 15.33763018-23.00644527 15.3376302z"></path>
</svg>
)
}
Vue.component('icon-enter', Icon)
export default Icon