wangbd-myui
Version:
MY前端基础框架核心组件库
21 lines (15 loc) • 2.19 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="M821.400909 366.027653c-3.888608 3.888608-5.483934 9.472249-4.28744 14.856476l114.763778 498.140603c2.392989 9.173126-0.498539 17.349172-8.774294 24.029601l-93.326582 69.795521c-3.29036 2.891529-8.076339 4.387147-13.759688 4.387147-1.89445 0-3.589484-0.299124-4.985395-0.797663-7.378384-1.495618-12.363778-5.384226-15.355014-11.566115L592.272184 595.156378 407.114638 780.313924c-1.994158 1.994158-2.791821 4.985394-2.093866 7.777215l37.29075 136.699513c2.392989 8.275755 0.498539 15.654138-5.882765 22.434275l-69.895229 70.194352c-4.287439 4.287439-9.970789 6.580721-16.551509 6.580721h-1.495619c-7.378384-0.897371-13.161441-4.088023-17.44888-9.571957l-85.050828-113.26816c-34.997468-46.563583-76.475949-88.042064-123.13924-122.939825l-113.168452-84.751704c-5.384226-3.29036-8.375463-9.073418-9.571957-16.551509-0.498539-6.381305 1.695034-12.363778 6.680428-18.246543l69.795521-70.593184c4.287439-4.287439 9.970789-6.680428 16.55151-6.680429 2.891529 0 4.885686 0.299124 5.882765 0.797663l136.699513 37.29075c0.697955 0.199416 1.39591 0.299124 2.093866 0.299124 2.093866 0 4.088023-0.797663 5.683349-2.293282l185.157546-185.257254L59.333528 228.630185c-6.780136-3.7889-10.86816-9.671665-12.363778-17.44888-0.897371-7.876923 1.096787-14.15852 6.58072-19.642454l93.326583-93.226874c4.885686-4.586563 10.070497-6.879844 15.454722-6.879845 2.093866 0 4.287439 0.299124 6.481013 0.997079l475.606621 113.666992c1.196495 0.299124 2.492697 0.398832 3.689192 0.398831 4.187731 0 8.275755-1.595326 11.266991-4.686271L769.552807 91.53184c36.891918-36.891918 78.769231-63.015385 125.332814-78.76923 19.243622-6.381305 36.79221-9.571957 52.546057-9.571958 21.935735 0 40.381694 6.181889 55.038753 18.645375 21.337488 25.226095 24.229017 61.120935 8.774294 107.784226-15.454722 46.563583-41.877313 88.440896-78.76923 125.332814L821.400909 366.027653z"/>
</svg>
)
}
Vue.component('icon-airplane-fill', Icon)
export default Icon