@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.78 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: 'IconSocialPinterestCircleFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--pinterestCircleFilledLarge', 'IconSocialPinterestCircleFilledLarge');
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: 'M16 3.75a12.25 12.25 0 1 0 0 24.5 12.25 12.25 0 0 0 0-24.5m5.915 15.636a5.35 5.35 0 0 1-3.902 2.625 3.41 3.41 0 0 1-2.766-.682 2 2 0 0 1-.236-.228c-.07-.078-.131-.166-.227-.288 0 .105-.053.175-.07.245-.202.752-.385 1.505-.604 2.257a9.2 9.2 0 0 1-1.811 3.299c-.07.078-.123.157-.193.245l-.07-.079a11.4 11.4 0 0 1-.052-3.859c.393-1.75.831-3.543 1.242-5.32a.9.9 0 0 0 0-.446 3.96 3.96 0 0 1 0-2.695 2.13 2.13 0 0 1 1.234-1.356 1.384 1.384 0 0 1 1.899 1.146 4.4 4.4 0 0 1-.228 1.61c-.21.753-.446 1.496-.647 2.249a1.61 1.61 0 0 0 1.697 2.1 3.01 3.01 0 0 0 2.45-1.488 6.06 6.06 0 0 0 .954-3.167 4.95 4.95 0 0 0-.437-2.511 4.1 4.1 0 0 0-2.748-2.258 5.17 5.17 0 0 0-4.681.875 4.664 4.664 0 0 0-.989 6.265.62.62 0 0 1 .088.394c-.08.393-.184.787-.29 1.172-.104.385-.165.298-.393.175a3.6 3.6 0 0 1-1.531-1.584 6.37 6.37 0 0 1 .814-7 6.84 6.84 0 0 1 4.585-2.362 8.1 8.1 0 0 1 3.84.367 6.31 6.31 0 0 1 4.253 6.318 7.76 7.76 0 0 1-1.181 3.981',
},
})]);
},
};