wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 1.08 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="M576 203.5v617.1L286.5 663.7c-9.4-5.1-19.8-7.7-30.5-7.7H80c-8.8 0-16-7.2-16-16V384c0-8.8 7.2-16 16-16h176c10.6 0 21.1-2.7 30.5-7.7L576 203.5M239.8 304H64c-35.3 0-64 28.7-64 64v288c0 35.3 28.7 64 64 64h175.8c10.6 0 21.1 2.7 30.5 7.7l322.5 174.7c21.3 11.5 47.2-3.9 47.2-28.1V149.7c0-24.2-25.9-39.7-47.2-28.1L270.3 296.3c-9.4 5-19.9 7.7-30.5 7.7zM891.1 520.8l78.2 123c9.5 14.9 5.1 34.7-9.8 44.2s-34.7 5.1-44.2-9.8l-60.8-95.7c-3.1-4.9-10.4-4.9-13.5 0l-60.8 95.7c-9.5 14.9-29.3 19.3-44.2 9.8-14.9-9.5-19.3-29.3-9.8-44.2l78.2-123c3.3-5.2 3.3-11.9 0-17.2l-78.2-123c-9.5-14.9-5.1-34.7 9.8-44.2s34.7-5.1 44.2 9.8L841 442c3.1 4.9 10.4 4.9 13.5 0l60.8-95.7c9.5-14.9 29.3-19.3 44.2-9.8 14.9 9.5 19.3 29.3 9.8 44.2l-78.2 123c-3.3 5.2-3.3 11.9 0 17.1z"/>
</svg>
)
}
Vue.component('icon-mute', Icon)
export default Icon