@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
41 lines (38 loc) • 953 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var FlagItIcon = {
name: 'FlagItIcon',
props: {},
functional: true,
render(h, ctx) {
const attrs = ctx.data.attrs || {};
ctx.data.attrs = attrs;
return h("svg", _mergeJSXProps([{
"attrs": {
"xmlns": "http://www.w3.org/2000/svg",
"viewBox": "0 0 640 480"
},
"class": "c-ficon c-ficon--flag.it"
}, ctx.data]), [h("g", {
"attrs": {
"fill-rule": "evenodd",
"stroke-width": "1pt"
}
}, [h("path", {
"attrs": {
"fill": "#fff",
"d": "M0 0h640v479.997H0z"
}
}), h("path", {
"attrs": {
"fill": "#009246",
"d": "M0 0h213.33v479.997H0z"
}
}), h("path", {
"attrs": {
"fill": "#ce2b37",
"d": "M426.663 0h213.33v479.997h-213.33z"
}
})])]);
}
};
export { FlagItIcon as default };