@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
38 lines (35 loc) • 948 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var FlagLuRoundIcon = {
name: 'FlagLuRoundIcon',
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 512 512"
},
"class": "c-ficon c-ficon--flag.lu.round"
}, ctx.data]), [h("circle", {
"attrs": {
"cx": "256",
"cy": "256",
"r": "256",
"fill": "#eee"
}
}), h("path", {
"attrs": {
"fill": "#d80027",
"d": "M256 0A256 256 0 0 0 16 167h480A256 256 0 0 0 256 0z"
}
}), h("path", {
"attrs": {
"fill": "#338af3",
"d": "M256 512a256 256 0 0 0 240-167H16a256 256 0 0 0 240 167z"
}
})]);
}
};
export { FlagLuRoundIcon as default };