UNPKG

@justeattakeaway/pie-icons-vue

Version:
38 lines (36 loc) 1.4 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconFlagNorway', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--norway', 'IconFlagNorway'); 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: 'M1.241 9.827a7 7 0 0 0 2.5 3.724V9.827zm6.152 5.146q.303.026.607.027a7 7 0 0 0 6.76-5.173H7.39v5.146zm7.367-8.8a7 7 0 0 0-7.37-5.146v5.146zM3.74 2.45a7 7 0 0 0-2.499 3.724h2.5z', }, }), h('path', { attrs: { fill: '#0052b4', d: 'M14.94 7.087H6.477v-5.92a7 7 0 0 0-1.823.683v5.237H1.06a7 7 0 0 0 0 1.826h3.593v5.237a7 7 0 0 0 1.823.683v-5.92h8.463a7 7 0 0 0 0-1.826', }, })]); }, };