@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
37 lines (35 loc) • 1.86 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: 'IconOver16',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--over16', 'IconOver16');
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: {
'fill-rule': 'evenodd',
d: 'M7.805 5.005c.348-.022.696.031 1.02.155s.614.315.85.56l-.769.808a1.5 1.5 0 0 0-.505-.334 1.6 1.6 0 0 0-.603-.112c-.781 0-1.28.612-1.28 1.609.163-.193.374-.345.612-.444.239-.099.499-.141.758-.125.262-.01.524.03.769.12.245.089.468.225.656.4.188.174.336.384.436.615.1.232.149.48.144.731.002.275-.056.548-.17.8-.113.253-.28.48-.49.67-.21.188-.458.333-.73.425-.27.093-.559.131-.846.113-1.441 0-2.357-.949-2.357-2.858 0-2.117 1.127-3.133 2.505-3.133m-.18 3.103a.967.967 0 0 0-.745.238.9.9 0 0 0-.23.314.9.9 0 0 0-.075.378.9.9 0 0 0 .069.385c.05.122.129.232.228.324a.98.98 0 0 0 .754.257 1.02 1.02 0 0 0 .745-.25.9.9 0 0 0 .23-.319.9.9 0 0 0 .075-.379.9.9 0 0 0-.069-.383.9.9 0 0 0-.229-.321.97.97 0 0 0-.752-.244',
'clip-rule': 'evenodd',
},
}), h('path', {
attrs: {
d: 'M4.213 10.896H3.049V6.49l-.956.356-.393-.987 1.68-.754h.833z',
},
}), h('path', {
attrs: {
d: 'M13.014 8.6h1.2V7.4h-1.2V6.2h-1.2v1.2h-1.2v1.2h1.2v1.2h1.2z',
},
})]);
},
};