wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 3.36 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="M1015.530037 9.594612c-6.296464-6.196521-14.391919-9.394725-22.587317-9.394724s-16.390796 3.09826-22.587317 9.394724L722.094808 256.855769c-3.09826-3.09826-7.195959-4.697362-11.293659-4.697362-4.097699 0-8.195398 1.599102-11.293658 4.697362l-22.587317 22.587317c-18.789449 18.789449-49.072445 18.789449-67.861894 0-6.296464-6.196521-14.391919-9.394725-22.587316-9.394724-8.195398 0-16.390796 3.09826-22.587317 9.394724L127.928446 715.298343c-9.394725 9.394725-24.586194 9.394725-33.880975 0l-25.485689-25.485689c-1.599102-1.599102-4.097699-1.599102-5.696801 0l-39.577777 39.577776c-1.599102 1.599102-1.599102 4.097699 0 5.696801l81.953981 81.953981c3.09826 3.09826 3.09826 8.195398 0 11.293659l-5.396969 5.396969c-12.492985 12.492985-32.781592 12.492985-45.174633 0-12.492985-12.492985-32.781592-12.492985-45.274578 0-6.296464 6.296464-9.394725 14.391919-9.394724 22.587317s3.09826 16.390796 9.394724 22.587316l135.723788 135.723788c12.492985 12.492985 32.781592 12.492985 45.274577 0 6.296464-6.296464 9.394725-14.391919 9.394725-22.587316s-3.09826-16.390796-9.394725-22.587317-9.394725-14.391919-9.394724-22.587317c0-8.195398 3.09826-16.390796 9.394724-22.587316l5.39697-5.39697c3.09826-3.09826 8.195398-3.09826 11.293658 0l81.953981 81.953981c1.599102 1.599102 4.097699 1.599102 5.696801 0l39.577776-39.577776c1.599102-1.599102 1.599102-4.097699 0-5.696801l-25.485689-25.485689c-9.394725-9.394725-9.394725-24.586194 0-33.880975l73.358808-73.358808 45.274577-45.274577 317.321816-317.321816c12.492985-12.492985 12.492985-32.781592 0-45.274578-9.394725-9.394725-14.092087-21.587878-14.092087-33.880975 0-12.293097 4.697362-24.586194 14.092087-33.880975l22.587317-22.587316c6.296464-6.296464 6.296464-16.390796 0-22.587317l248.260596-247.261157c12.393041-12.492985 12.393041-32.681648-0.099944-45.174634zM334.012725 780.561696l-39.577776 39.577776c-1.599102 1.599102-4.097699 1.599102-5.696801 0L249.160371 780.561696c-1.599102-1.599102-1.599102-4.097699 0-5.696801l39.577777-39.577776c1.599102-1.599102 4.097699-1.599102 5.696801 0l39.577776 39.577776c1.599102 1.599102 1.599102 4.097699 0 5.696801z m90.44921-90.44921l-39.577776 39.577776c-1.599102 1.599102-4.097699 1.599102-5.696801 0l-39.577776-39.577776c-1.599102-1.599102-1.599102-4.097699 0-5.696801l39.577776-39.577777c1.599102-1.599102 4.097699-1.599102 5.696801 0l39.577776 39.577777c1.599102 1.599102 1.599102 4.097699 0 5.696801z m90.449211-90.449211l-39.577776 39.577776c-1.599102 1.599102-4.097699 1.599102-5.696801 0L430.158737 599.663275c-1.599102-1.599102-1.599102-4.097699 0-5.696801l39.577776-39.577776c1.599102-1.599102 4.097699-1.599102 5.696801 0l39.577776 39.577776c1.499158 1.599102 1.499158 4.097699-0.099944 5.696801z m150.615426-150.615426l-31.082546 31.082547c-1.599102 1.599102-4.097699 1.599102-5.696802 0l-84.852353-84.75241c-1.599102-1.599102-1.599102-4.097699 0-5.696801l31.082546-31.082547c6.196521-6.196521 16.390796-6.196521 22.587317 0l67.861894 67.861894c6.296464 6.196521 6.296464 16.290852 0.099944 22.587317z"/>
</svg>
)
}
Vue.component('icon-treatment-fill', Icon)
export default Icon