@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
33 lines (30 loc) • 780 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var FlagPlRoundIcon = {
name: 'FlagPlRoundIcon',
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.pl.round"
}, ctx.data]), [h("circle", {
"attrs": {
"cx": "256",
"cy": "256",
"r": "256",
"fill": "#eee"
}
}), h("path", {
"attrs": {
"fill": "#d80027",
"d": "M512 256a256 256 0 0 1-512 0"
}
})]);
}
};
export { FlagPlRoundIcon as default };