UNPKG

@justeattakeaway/pie-icons-vue

Version:
47 lines (45 loc) 1.52 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconListLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--listLarge', 'IconListLarge'); 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.856 8.125H10.75v1.75h16.494l.612-1.75Z', }, }), h('path', { attrs: { d: 'M5.5 24.575a1.575 1.575 0 1 0 0-3.15 1.575 1.575 0 0 0 0 3.15Z', }, }), h('path', { attrs: { d: 'M25.406 15.125H10.75v1.75h14.044l.612-1.75Z', }, }), h('path', { attrs: { d: 'M27.506 22.125H10.75v1.75h16.222l.534-1.75Z', }, }), h('path', { attrs: { d: 'M5.5 17.575a1.575 1.575 0 1 0 0-3.15 1.575 1.575 0 0 0 0 3.15Z', }, }), h('path', { attrs: { d: 'M5.5 10.575a1.575 1.575 0 1 0 0-3.15 1.575 1.575 0 0 0 0 3.15Z', }, })]); }, };