vue2-el-bpmn
Version:
Vue2+ElementUI+BPMN2.0整合(基于Bpmn Process Designer)
21 lines (15 loc) • 1.82 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="M271.2 234.6c4 6.7 14.3 25.7 25.1 45.9C359 396.8 391 452.3 415.1 473.8c2.9 2.6 7.8 6.9 14.1 12.5 26.2 23.1 75 66.1 121.2 108.1 76.4 69.4 91.7 86.8 94.3 90.1 12 16.9 35.8 40.3 112.4 72 27 11.2 54.8 17.4 82.5 18.5 6.7 0.3 17.1 2.9 27.8 7.2 12.4 4.9 25.4 7.4 38.8 7.4h2.4c-1.3 0.7-2.5 1.3-3.5 1.8-18.6 5.8-59.2 11.3-82.3 13.3l-10.2 0.9-9.4 4c-36.7 15.7-81.7 23.6-133.5 23.6-120 0-237.6-42.5-257.2-49.9C377 764.7 334.6 755 289.4 755c-30.5 0-53.6 4.4-59.9 5.8-33.8 6.5-68.7 9.9-103.7 9.9-4.1 0-8.2 0-12.2-0.1-13.9-0.3-26.7-6.1-36.2-16.3-9.3-10-14-22.9-13.3-36.4 1.7-32.3 12.8-66.9 19.5-87.6 2.1-6.5 3.9-12.1 5.3-17.1 9.5-34.9 12.9-81.3 18-151.6 0.6-8.9 1.3-18.2 2-27.9 2.4-32.9-1-71.1-10.3-113.6-1.8-8.3-6.9-28.1-9-36.3-0.5-1.9 0.5-4 2.4-4.7l163.4-66.4c1.9-0.8 4.1 0 5.1 1.9 2.6 5 7.5 14.7 10.7 20zM37.6 232C22 238.4 14 255.7 19.2 271.6c12 36.6 29.9 102.5 25.9 157.3-6 80.7-9 134.5-17.9 167.3C22.4 613.9 2.9 663.5 0.3 714.5-3 778.7 48 833 112.3 834.4c4.4 0.1 8.9 0.2 13.7 0.2 32 0 72.3-2.5 116.6-11.2 0 0 19.4-4.5 47-4.5s63.5 4.5 96.4 22.4c0 0 138.3 55.6 283.8 55.6 54.1 0 109.2-7.7 158.6-28.8 0 0 68.8-5.9 101.6-17.9 0 0 114.4-54.9 91-106.7-6.1-13.5-19.8-22-34.6-22.2-4.2-0.1-9-0.1-14.2-0.1-19.1 0-43.2 0.6-58.2 3.4-2.6 0.5-5.2 0.7-7.8 0.7-5.2 0-10.4-1-15.4-2.9-11.8-4.6-30.4-10.8-48.3-11.5-21.6-1-42.7-6.1-62.6-14.4-31.5-13.2-71.1-32.3-83.1-49.5-20.9-29.9-212.2-197.3-239.1-221.2-27-23.8-113.7-194.2-131.6-224.1-7.9-13.2-14.7-29.3-19.7-43.1-6.2-17-25.3-25.4-42.1-18.6L37.6 232z"/>
</svg>
)
}
Vue.component('icon-foot', Icon)
export default Icon