UNPKG

@justeattakeaway/pie-icons-vue

Version:
35 lines (32 loc) 1.03 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from './pie-icons-configs/configs-vue.mjs'; var IconFlagPoland = { name: 'IconFlagPoland', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--poland', 'IconFlagPoland'); 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 14Z', }, }), h('path', { attrs: { fill: '#D80027', d: 'M15 8A7 7 0 1 1 1 8', }, })]); }, }; export { IconFlagPoland as default };