UNPKG

@justeattakeaway/pie-icons-vue

Version:
37 lines (35 loc) 1.37 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconDoubleCheck', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--doubleCheck', 'IconDoubleCheck'); 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: 'm7.843 8.779 3.14-3.386-.962-.893-3.036 3.308.858.97Z', }, }), h('path', { attrs: { d: 'm4.902 10.074-.288.315-2.11-2.38-.98.875 2.188 2.458c.228.245.552.385.884.385.333 0 .656-.14.884-.385l.28-.306-.858-.962Z', }, }), h('path', { attrs: { 'fill-rule': 'evenodd', d: 'M7.195 11.342c.226.244.548.384.88.385.33 0 .652-.14.879-.385l5.52-5.95-.962-.892-5.416 5.889-2.109-2.38-.98.875 2.188 2.458Zm.88.385h.004-.01.005Z', 'clip-rule': 'evenodd', }, })]); }, };