@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
33 lines (31 loc) • 1.3 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue';
export default {
name: 'IconPlayCircleFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--playCircleFilledLarge', 'IconPlayCircleFilledLarge');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 32 32',
},
}, ctx.data]), [h('path', {
attrs: {
d: 'm20.043 16-6.633 3.456-.026-6.93z',
},
}), h('path', {
attrs: {
'fill-rule': 'evenodd',
d: 'M9.194 5.815a12.25 12.25 0 1 1 13.612 20.37A12.25 12.25 0 0 1 9.194 5.816m4.688 15.365 7.56-3.964A1.46 1.46 0 0 0 22.126 16a1.48 1.48 0 0 0-.7-1.234l-7.516-3.928a1.42 1.42 0 0 0-1.462-.088 1.46 1.46 0 0 0-.778 1.321v7.875a1.46 1.46 0 0 0 1.444 1.47c.274 0 .542-.083.77-.236',
'clip-rule': 'evenodd',
},
})]);
},
};