@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
43 lines (40 loc) • 972 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var FlagChIcon = {
name: 'FlagChIcon',
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.ch"
}, ctx.data]), [h("g", {
"attrs": {
"fill-rule": "evenodd",
"stroke-width": "1pt"
}
}, [h("path", {
"attrs": {
"fill": "#d52b1e",
"d": "M0 0h640v480H0z"
}
}), h("g", {
"attrs": {
"fill": "#fff"
}
}, [h("path", {
"attrs": {
"d": "M170 194.997h299.996v89.997H170z"
}
}), h("path", {
"attrs": {
"d": "M275 89.997h89.996v299.996H275z"
}
})])])]);
}
};
export { FlagChIcon as default };