UNPKG

@justeattakeaway/pie-icons-vue

Version:
43 lines (41 loc) 1.62 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconSoundwave', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--soundwave', 'IconSoundwave'); 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: 'M1.74 4.38c-.41 0-.75.34-.75.75v5.75c0 .41.34.75.75.75s.75-.34.75-.75V5.13c0-.41-.34-.75-.75-.75Z', }, }), h('path', { attrs: { d: 'M4.85 1.07c-.41 0-.75.34-.75.75v12.36c0 .41.34.75.75.75s.75-.34.75-.75V1.82c0-.41-.34-.75-.75-.75Z', }, }), h('path', { attrs: { d: 'M7.96 2.62c-.41 0-.75.34-.75.75v9.26c0 .41.34.75.75.75s.75-.34.75-.75V3.37c0-.41-.34-.75-.75-.75Z', }, }), h('path', { attrs: { d: 'M11.07 5.21c-.41 0-.75.34-.75.75v4.08c0 .41.34.75.75.75s.75-.34.75-.75V5.96c0-.41-.34-.75-.75-.75Z', }, }), h('path', { attrs: { d: 'M14.18 3.74c-.41 0-.75.34-.75.75v7.03c0 .41.34.75.75.75s.75-.34.75-.75V4.49c0-.41-.34-.75-.75-.75Z', }, })]); }, };