wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.97 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="M344 665.5c0 0.4-0.1 0.9-0.1 1.3 0-0.5 0-0.9 0.1-1.3zM648 355.4c0.5-0.3 1-0.7 1.5-1-0.5 0.3-1 0.7-1.5 1z" p-id="13522"></path><path d="M679.9 371.5v148c0 11-9 20-20 20s-20-9-20-20v-99.7L412.2 647.5h99.7c11 0 20 9 20 20s-9 20-20 20h-149c-0.3 0-0.6 0-0.9-0.1-0.3 0-0.6-0.1-0.9-0.1-0.3 0-0.6-0.1-0.9-0.1l-1.5-0.3c-0.2-0.1-0.5-0.1-0.7-0.2-0.3-0.1-0.5-0.2-0.8-0.3-0.2-0.1-0.3-0.1-0.5-0.2s-0.3-0.1-0.5-0.2c-0.1 0-0.2-0.1-0.2-0.1l-0.6-0.3c-0.1 0-0.2-0.1-0.3-0.1l-0.6-0.3c-0.3-0.2-0.6-0.3-0.8-0.5-1.4-0.8-2.6-1.8-3.8-3-0.2-0.2-0.4-0.5-0.6-0.7-0.2-0.2-0.4-0.5-0.6-0.7-0.1-0.2-0.3-0.3-0.4-0.5-0.3-0.3-0.5-0.7-0.8-1.1-0.2-0.3-0.3-0.5-0.5-0.8-0.2-0.3-0.3-0.5-0.5-0.8-0.1-0.2-0.2-0.4-0.3-0.7l-0.9-2.1c-0.1-0.2-0.2-0.5-0.3-0.8-0.1-0.3-0.2-0.7-0.3-1.1-0.1-0.3-0.2-0.6-0.2-1-0.1-0.3-0.1-0.6-0.2-1 0-0.3-0.1-0.7-0.1-1 0-0.3 0-0.6-0.1-0.9V519.3c0-11 9-20 20-20s20 9 20 20V619l227.7-227.7h-99.7c-11 0-20-9-20-20s9-20 20-20h149c0.3 0 0.6 0 0.9 0.1 0.3 0 0.6 0.1 0.9 0.1 0.3 0 0.6 0.1 1 0.2 0.2 0 0.5 0.1 0.7 0.2 0.1 0 0.2 0 0.3 0.1 0.2 0 0.3 0.1 0.5 0.1 0.5 0.1 0.9 0.3 1.3 0.4 0.2 0.1 0.4 0.1 0.5 0.2 0.2 0.1 0.3 0.1 0.5 0.2 0.3 0.1 0.5 0.2 0.8 0.3l0.6 0.3 0.6 0.3c0.2 0.1 0.5 0.3 0.7 0.4 0.3 0.2 0.5 0.3 0.8 0.5 2.1 1.4 4 3.3 5.4 5.4 0.2 0.3 0.4 0.5 0.5 0.8 0.2 0.3 0.3 0.6 0.5 0.8l0.3 0.6c0.1 0.1 0.1 0.2 0.2 0.3l0.3 0.6c0 0.1 0.1 0.2 0.1 0.2 0.1 0.2 0.1 0.3 0.2 0.5s0.1 0.3 0.2 0.5c0.3 1 0.6 2 0.8 3 0.1 0.3 0.1 0.5 0.1 0.8 0.1 0.6 0.2 1.2 0.2 1.8-0.1 0.8-0.1 1.2-0.1 1.5zM344 665.5c0 0.4-0.1 0.9-0.1 1.3 0-0.5 0-0.9 0.1-1.3z" p-id="13523"></path><path d="M648 355.4c0.5-0.3 1-0.7 1.5-1-0.5 0.3-1 0.7-1.5 1z" p-id="13524"></path>
</svg>
)
}
Vue.component('icon-dialog-maximize', Icon)
export default Icon