@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (29 loc) • 1.18 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: 'IconNotificationFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--notificationFilled', 'IconNotificationFilled');
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: 'M13.504 9.951a4.58 4.58 0 0 1-1.348-3.255V6.25a4.17 4.17 0 0 0-1.365-3.08 4.2 4.2 0 0 0-2.135-1.006V1H7.344v1.164a4.29 4.29 0 0 0-3.5 4.252v.28a4.58 4.58 0 0 1-1.348 3.255l-.402.403v1.802h11.812v-1.802z',
},
}), h('path', {
attrs: {
d: 'M8 14.781a2.82 2.82 0 0 0 2.371-1.312H5.63A2.82 2.82 0 0 0 8 14.78',
},
})]);
},
};