@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
37 lines (35 loc) • 2.01 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: 'IconOver16Large',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--over16Large', 'IconOver16Large');
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: {
'fill-rule': 'evenodd',
d: 'M15.71 10.01a4.9 4.9 0 0 1 2.04.31 4.7 4.7 0 0 1 1.701 1.12l-1.538 1.616a3 3 0 0 0-1.01-.668 3.1 3.1 0 0 0-1.207-.224c-1.562 0-2.561 1.223-2.562 3.218.329-.385.75-.69 1.226-.888a3.4 3.4 0 0 1 1.517-.25 4 4 0 0 1 1.537.239c.49.178.937.45 1.312.8.376.35.673.769.872 1.232.2.463.297.96.288 1.461a3.85 3.85 0 0 1-.34 1.6 4 4 0 0 1-.98 1.338 4.2 4.2 0 0 1-1.459.853 4.4 4.4 0 0 1-1.692.224c-2.883 0-4.715-1.897-4.715-5.715 0-4.235 2.255-6.267 5.01-6.267m-.359 6.205a2 2 0 0 0-.799.084 1.9 1.9 0 0 0-.69.392 1.8 1.8 0 0 0-.463.63 1.75 1.75 0 0 0-.149.754c-.012.263.035.526.137.77.103.245.259.465.457.648.199.183.436.325.695.414.26.088.537.123.812.102.272.02.545-.014.802-.1s.492-.224.69-.402c.198-.18.355-.396.46-.637.105-.24.155-.498.15-.758a1.75 1.75 0 0 0-.138-.767 1.8 1.8 0 0 0-.459-.641c-.2-.18-.437-.317-.696-.402a2 2 0 0 0-.809-.087',
'clip-rule': 'evenodd',
},
}), h('path', {
attrs: {
d: 'M8.526 21.793H6.197v-8.815l-1.912.712-.785-1.974 3.358-1.508h1.668z',
},
}), h('path', {
attrs: {
d: 'M26.129 17.2h2.4v-2.4h-2.4v-2.4h-2.4v2.4h-2.4v2.4h2.4v2.4h2.4z',
},
})]);
},
};