UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.44 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconSoundOff', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--soundOff', 'IconSoundOff'); 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: 'M11.281 4.736v-3.5H9.75l-.166.167A22 22 0 0 1 7.598 3.1 24 24 0 0 1 5.19 4.719H2.75A1.54 1.54 0 0 0 1.219 6.25v3.5a1.54 1.54 0 0 0 1.531 1.531h2.441q1.256.732 2.407 1.619a23 23 0 0 1 1.986 1.697l.192.184h1.505v-3.5L9.97 12.594v.586c-.508-.464-1.033-.875-1.566-1.312a27 27 0 0 0-2.372-1.602V5.751q1.23-.735 2.372-1.601c.533-.411 1.058-.875 1.566-1.312v.586zM4.72 9.97H2.75a.22.22 0 0 1-.219-.219v-3.5a.22.22 0 0 1 .219-.219h1.969z', }, }), h('path', { attrs: { d: 'M14.633 6.058 12.69 8l1.943 1.943-.928.927-1.943-1.942L9.82 10.87l-.928-.927L10.836 8 8.892 6.058l.928-.928 1.942 1.943 1.943-1.943z', }, })]); }, };