UNPKG

wangbd-myui

Version:

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

21 lines (15 loc) 3.04 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="M815.999828 464.000317c0 58.599967-16.599991 113.199936-45.199975 159.59991-16.199991 26.199985-52.79997 30.299983-74.599957 8.499995-15.799991-15.799991-18.49999-40.299977-6.799996-59.299966C709.299888 540.400274 719.999882 503.000295 719.999882 464.000317c0-55.599969-21.599988-107.799939-60.899965-147.099916S567.599969 256.000435 512 256.000435s-107.799939 21.599988-147.099917 60.899966S304.000118 408.400349 304.000118 464.000317c0 38.999978 10.699994 76.399957 30.599982 108.799939 11.699993 18.999989 8.999995 43.599975-6.799996 59.299966-21.799988 21.799988-58.399967 17.69999-74.599957-8.499995-28.599984-46.399974-45.199974-100.999943-45.199975-159.59991 0-167.899905 136.099923-303.999828 303.999828-303.999828s303.999828 136.099923 303.999828 303.999828zM975.999737 465.300316c-0.3 103.799941-34.69998 199.599887-92.499947 276.699844-17.49999 23.399987-51.699971 25.799985-72.299959 5.099997-16.89999-16.89999-18.699989-43.699975-4.299998-62.899965 17.79999-23.799987 32.599982-49.499972 44.299975-77.099956C870.299797 561.900262 879.999792 513.700289 879.999792 464.000317c0-49.699972-9.699995-97.899945-28.899984-143.199919-18.49999-43.799975-45.099974-83.199953-78.899955-116.999933-33.799981-33.799981-73.199959-60.399966-116.999934-78.899956C609.899945 105.70052 561.699972 96.000526 512 96.000526s-97.899945 9.699995-143.199919 28.899983c-43.799975 18.49999-83.199953 45.099974-116.999934 78.899956-33.799981 33.799981-60.399966 73.199959-78.899955 116.999933C153.700203 366.100373 144.000208 414.300345 144.000208 464.000317c0 49.699972 9.699995 97.899945 28.899984 143.199919 11.699993 27.499984 26.499985 53.29997 44.299975 77.099956 14.399992 19.199989 12.599993 45.899974-4.299998 62.899965-20.699988 20.699988-54.899969 18.09999-72.399959-5.299997C82.400243 664.400204 48.000263 568.200258 48.000263 464.000317 48.000263 207.500462 256.100145-0.39942 512.7 0.00058c256.999854 0.4 463.999737 208.299882 463.299737 465.299736zM591.999955 960.000036h43.999975c2.199999 0 3.999998 1.799999 3.999998 3.999998v55.999968c0 2.199999-1.799999 3.999998-3.999998 3.999998H388.00007c-2.199999 0-3.999998-1.799999-3.999998-3.999998v-55.999968c0-2.199999 1.799999-3.999998 3.999998-3.999998h43.999975c17.69999 0 31.999982-14.299992 31.999982-31.999982V619.900229c0-20.499988-9.799994-39.899977-26.499985-51.899971-32.599982-23.399987-53.79997-61.799965-53.49997-105.09994 0.5-70.69996 58.999967-127.899928 129.699927-126.999928 69.89996 0.899999 126.299928 57.899967 126.299929 127.999927 0 42.899976-21.099988 80.899954-53.49997 104.099941-16.699991 11.999993-26.499985 31.299982-26.499985 51.799971V928.000054c0 17.69999 14.299992 31.999982 31.999982 31.999982z"/> </svg> ) } Vue.component('icon-hot-spot-signal-fill', Icon) export default Icon