@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (32 loc) • 1.36 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconFlagTurkey = {
name: 'IconFlagTurkey',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--turkey', 'IconFlagTurkey');
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: '#e30a17',
d: 'M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0',
},
}), h('path', {
attrs: {
fill: '#fff',
d: 'M8.308 8 11 7.118 9.336 9.427V6.573L11 8.882zm.183 1.604c-.344.55-.857.971-1.46 1.201a2.95 2.95 0 0 1-1.883.076 2.98 2.98 0 0 1-1.551-1.079 3.02 3.02 0 0 1 0-3.604A2.954 2.954 0 0 1 7.03 5.195c.603.23 1.116.652 1.46 1.2a2.363 2.363 0 0 0-2.623-.637c-.45.175-.837.482-1.11.882a2.41 2.41 0 0 0 0 2.72c.273.4.66.707 1.11.881a2.36 2.36 0 0 0 2.623-.637',
},
})]);
},
};
export { IconFlagTurkey as default };