UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 1.09 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="M639.999191 893.597594c1.299992 70.499555-56.599642 129.899179-126.999197 130.399176-71.099551 0.499997-128.899186-56.99964-128.899186-127.999191 0-55.699648 35.599775-103.099349 85.299461-120.699238 6.39996-2.299985 10.699932-8.299948 10.699933-15.099904V263.801573c0-6.799957-4.299973-12.799919-10.699933-15.099904-49.699686-17.599889-85.299461-64.999589-85.299461-120.699238C384.000809 57.00288 441.800444-0.496757 512.899994 0.00324c70.499555 0.499997 128.299189 59.899622 126.999198 130.399176-0.999994 54.699654-36.299771 101.099361-85.399461 118.399252-6.39996 2.199986-10.599933 8.299948-10.599933 14.999905v496.396864c0 6.699958 4.199973 12.799919 10.599933 14.999905 49.09969 17.299891 84.499466 63.699598 85.49946 118.399252z"/> </svg> ) } Vue.component('icon-map-link-fill', Icon) export default Icon