UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 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: 'IconConsent', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--consent', 'IconConsent'); 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: 'M13.924 11.57v-7c0-.84-.692-1.53-1.532-1.53h-8.75c-.84 0-1.531.69-1.531 1.53v7h-.849v1.313h13.502V11.57h-.84Zm-10.5 0v-7c0-.122.096-.218.218-.218h8.75c.123 0 .219.096.219.218v7H3.423Z', }, }), h('path', { attrs: { d: 'M10.126 5.542 7.003 8.91 5.918 7.685l-.98.875L5.97 9.724l.306.341a.993.993 0 0 0 1.453 0l.315-.341 3.045-3.281-.963-.893v-.008Z', }, })]); }, };