@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (32 loc) • 1.17 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconFlagDenmark = {
name: 'IconFlagDenmark',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--denmark', 'IconFlagDenmark');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 16 16',
},
}, ctx.data]), [h('path', {
attrs: {
fill: '#eee',
d: 'M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14',
},
}), h('path', {
attrs: {
fill: '#d80027',
d: 'M6.476 7.087h8.463A7 7 0 0 0 8 1a7 7 0 0 0-1.523.163zm-1.823 0V1.85A7 7 0 0 0 1.06 7.087zm0 1.826H1.06a7 7 0 0 0 3.593 5.236zm1.823 0v5.92a7 7 0 0 0 8.463-5.92z',
},
})]);
},
};
export { IconFlagDenmark as default };