UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.55 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconNotificationOffLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--notificationOffLarge', 'IconNotificationOffLarge'); 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: 'M27.673 5.526h-2.477L4.328 26.456h2.467l20.878-20.93Z', }, }), h('path', { attrs: { d: 'm27.384 21.775-.683-.682a9.556 9.556 0 0 1-2.817-6.808v-.901a7.88 7.88 0 0 0-2.59-5.836 7.903 7.903 0 0 0-4.41-1.987V2.884h-1.75V5.56c-3.929.438-7 3.999-7 8.146v.578a9.556 9.556 0 0 1-2.818 6.808l-.682.682v2.984h6.868c.08 2.424 2.066 4.375 4.507 4.375s4.427-1.951 4.506-4.375h6.869v-2.984Zm-11.375 5.609a2.768 2.768 0 0 1-2.765-2.625h5.53a2.774 2.774 0 0 1-2.765 2.625Zm9.625-4.375H6.384v-.517l.166-.166a11.292 11.292 0 0 0 3.334-8.041v-.578c0-3.29 2.423-6.107 5.512-6.413a6.062 6.062 0 0 1 4.725 1.549 6.158 6.158 0 0 1 2.013 4.54v.902c0 3.036 1.181 5.898 3.334 8.041l.166.166v.517Z', }, })]); }, };