@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
46 lines (43 loc) • 1.03 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var FlagNoIcon = {
name: 'FlagNoIcon',
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.no"
}, ctx.data]), [h("path", {
"attrs": {
"fill": "#ef2b2d",
"d": "M0 0h640v480H0z"
}
}), h("path", {
"attrs": {
"fill": "#fff",
"d": "M180 0h120v480H180z"
}
}), h("path", {
"attrs": {
"fill": "#fff",
"d": "M0 180h640v120H0z"
}
}), h("path", {
"attrs": {
"fill": "#002868",
"d": "M210 0h60v480h-60z"
}
}), h("path", {
"attrs": {
"fill": "#002868",
"d": "M0 210h640v60H0z"
}
})]);
}
};
export { FlagNoIcon as default };