@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.12 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: 'IconThumbsDownFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--thumbsDownFilled', 'IconThumbsDownFilled');
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: {
d: 'M4.404 5.016c-.01 1.234.17 2.461.534 3.64H1.874V2.094h2.992a8.1 8.1 0 0 0-.463 2.922m9.8 1.89L13.18 3.625a2.41 2.41 0 0 0-2.24-1.54H6.25a6.7 6.7 0 0 0-.569 2.923 10 10 0 0 0 .648 3.736l2.546 5.162h.402a1.75 1.75 0 0 0 1.75-2.135l-.402-2.388 2.45-.508a1.53 1.53 0 0 0 1.191-1.338 1.6 1.6 0 0 0-.062-.63',
},
})]);
},
};