wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.3 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="M796 70L277.5 944c-5.8 9.7-16.2 15.7-27.5 15.7h-18.5c-3.1 0-5-3.4-3.4-6l519-874.1C752.9 70 763.4 64 774.6 64h17.9c3.2 0 5.1 3.4 3.5 6zM756.4 0c-22.6 0-43.5 11.9-55 31.3l-582.2 980.6c-3.2 5.3 0.7 12.1 6.9 12.1l142.3-0.3c22.6 0 43.4-11.9 54.9-31.3L904.8 12.1C908 6.7 904.2 0 898 0H756.4zM208 96c38.2 0 74.3 15 101.6 42.4C337 165.7 352 201.8 352 240v64c0 38.2-15 74.3-42.4 101.6C282.3 433 246.2 448 208 448c-38.2 0-74.3-15-101.6-42.4C79 378.3 64 342.2 64 304v-64c0-38.2 15-74.3 42.4-101.6C133.7 111 169.8 96 208 96m0-64C93.6 32 0 125.6 0 240v64c0 114.4 93.6 208 208 208s208-93.6 208-208v-64c0-114.4-93.6-208-208-208zM816 608c38.2 0 74.3 15 101.6 42.4C945 677.7 960 713.8 960 752v64c0 38.2-15 74.3-42.4 101.6C890.3 945 854.2 960 816 960c-38.2 0-74.3-15-101.6-42.4C687 890.3 672 854.2 672 816v-64c0-38.2 15-74.3 42.4-101.6C741.7 623 777.8 608 816 608m0-64c-114.4 0-208 93.6-208 208v64c0 114.4 93.6 208 208 208s208-93.6 208-208v-64c0-114.4-93.6-208-208-208z"/>
</svg>
)
}
Vue.component('icon-percentage', Icon)
export default Icon