UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.18 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconShareLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--shareLarge', 'IconShareLarge'); 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: 'M23.5 18.25a3.75 3.75 0 0 0-3.165 1.755L12.13 16.9q.111-.444.12-.9a4 4 0 0 0-.12-.9l8.205-3.105A3.75 3.75 0 1 0 19.75 10q.008.298.06.592L11.5 13.75a3.749 3.749 0 1 0 0 4.5l8.333 3.15q-.066.296-.083.6a3.75 3.75 0 1 0 3.75-3.75m0-10.5a2.25 2.25 0 1 1 0 4.5 2.25 2.25 0 0 1 0-4.5m-15 10.5a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5m15 6a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5', }, })]); }, };