UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.33 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconIceCream', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--iceCream', 'IconIceCream'); 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: 'M12.148 7.939v-.875a2.63 2.63 0 0 0-.98-2.048 2 2 0 0 0 0-.21 3.185 3.185 0 0 0-6.37 0q0 .31.07.613a2.19 2.19 0 0 0-1.024 1.794V8a.6.6 0 0 0 .087.324l3.5 6.125a.657.657 0 0 0 1.138 0l3.5-6.125a.6.6 0 0 0 .079-.385m-6.02-3.176a1.872 1.872 0 0 1 3.71-.333h-.22q-.377-.02-.743.07l.385 1.251a1.4 1.4 0 0 1 .341 0 1.25 1.25 0 0 1 1.217 1.295v.412a18.376 18.376 0 0 1-5.661-.035v-.21a1 1 0 0 1 1.093-.91 1 1 0 0 1 .359.06l.367-1.25a2.5 2.5 0 0 0-.726-.123h-.096a1 1 0 0 1-.026-.227M8 12.803 5.734 8.876q1.13.114 2.266.096 1.132.018 2.258-.096z', }, })]); }, };