@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.24 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: 'IconThumbsUpFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--thumbsUpFilledLarge', 'IconThumbsUpFilledLarge');
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: 'M28.469 18.065 26.5 24.61a4.375 4.375 0 0 1-4.086 2.765h-8.881q-.444-.61-.814-1.269a8.5 8.5 0 0 1-1.094-4.419 12.1 12.1 0 0 1 1.085-5.25q.37-.701.831-1.347c.779-1.155 5.39-10.404 5.39-10.404a3.43 3.43 0 0 1 3.754 2.135c.241.622.293 1.3.149 1.952l-.971 4.82 4.724 1.165a2.626 2.626 0 0 1 1.882 3.307m-17.037 9.31H3.75v-12.25h7.682c-.087.149-.183.306-.27.481a13.84 13.84 0 0 0-1.287 6.082 10.3 10.3 0 0 0 1.304 5.25z',
},
})]);
},
};