UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.32 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="M490.480254 758.814742L271.433732 977.96124c-61.385013 61.385013-161.960459 61.385013-223.345472 0l-2.49939-2.49939c-61.385013-61.385013-61.385013-161.960459 0-223.345472l219.146497-219.046522c61.385013-61.385013 161.960459-61.385013 223.345473 0l2.499389 2.49939c61.385013 61.385013 61.385013 161.860483-0.099975 223.245496zM978.161191 271.133805L759.114669 490.280303c-61.385013 61.385013-161.960459 61.385013-223.345472 0l-2.49939-2.49939c-61.385013-61.385013-61.385013-161.960459 0-223.345472L752.316329 45.288943c61.385013-61.385013 161.960459-61.385013 223.345472 0l2.49939 2.49939c61.484989 61.484989 61.484989 161.960459 0 223.345472zM447.890652 415.898462l0.999756-238.941664-96.976325-32.991946zM383.906273 431.894557l-207.949231-79.980474 47.988284 95.976569zM575.859409 576.859165l32.492068 240.441299L671.835978 735.820356zM607.851599 592.85526l191.953136 110.972907-47.988284-95.976568zM367.910178 367.910178l-79.980473-111.972663-15.996095 79.980474z"/> </svg> ) } Vue.component('icon-link-off-fill', Icon) export default Icon