UNPKG

@justeattakeaway/pie-icons-vue

Version:
35 lines (32 loc) 1.27 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from './pie-icons-configs/configs-vue.mjs'; var IconFlagCanada = { name: 'IconFlagCanada', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--canada', 'IconFlagCanada'); 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 0 0-3.957-6.305v12.61A7 7 0 0 0 15 8ZM1 8a7 7 0 0 0 3.957 6.306V1.694A7 7 0 0 0 1 8Zm8.217.913 1.217-.612L9.827 8v-.61L8.61 8l.607-1.217H8.61L8 5.867l-.61.914h-.607l.607 1.216-1.217-.61V8l-.607.304 1.217.61-.306.61h1.222v.91h.602v-.91h1.22l-.304-.61Z', }, })]); }, }; export { IconFlagCanada as default };