vue2-el-bpmn
Version:
Vue2+ElementUI+BPMN2.0整合(基于Bpmn Process Designer)
21 lines (15 loc) • 1.32 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="M402.2 198.4c-118.8 0-227 45.3-308.4 119.5l36.2 53.7c34.8-33.3 74.7-59.6 119-78.3 48.5-20.5 100-30.9 153.2-30.9s104.7 10.4 153.2 30.9c46.9 19.8 89 48.2 125.1 84.4s64.5 78.3 84.4 125.1c20.5 48.5 30.9 100 30.9 153.2 0 3.7 0 7.5-0.2 11.2l64.1-5.3V656c0.1-252.7-204.8-457.6-457.5-457.6zM402.2 32C249 32 108.6 87.2 0 178.9l36 53.4c16.9-14.6 34.6-28.2 53.1-40.7 29.9-20.2 61.9-37.6 95.1-51.6 69-29.2 142.3-44 218-44s149 14.8 218 44c33.2 14 65.2 31.4 95.1 51.6 29.7 20 57.6 43.1 82.9 68.4 25.4 25.4 48.4 53.3 68.4 82.9 20.2 29.9 37.6 61.9 51.6 95.1 28.8 68.2 43.6 140.6 44 215.3l64-5.3c-4.3-340.9-282-616-624-616zM724.1 834.4c-62.5 112.5-182.2 188.8-319.8 189.6h-2.2c-202.4 0-366.5-162.6-368-365.2-0.5-70.5 18.8-136.4 52.6-192.6 6-10 16.6-15.5 27.4-15.5 5.4 0 10.9 1.4 16 4.3l156.7 90.5c5 2.9 10.5 4.3 16 4.3 6.6 0 13.1-2 18.6-6 24.2-17.5 53.4-27 83.2-27 22.4 0 45.1 5.3 66.3 16.6 52.3 27.8 80.1 83.8 74.4 139.3-1.3 12.6 4.8 24.9 15.8 31.2L712.2 791c15.2 8.8 20.4 28.1 11.9 43.4z"/>
</svg>
)
}
Vue.component('icon-gps-fill', Icon)
export default Icon