UNPKG

@justeattakeaway/pie-icons-vue

Version:
35 lines (33 loc) 1.98 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconRefereeLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--refereeLarge', 'IconRefereeLarge'); 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: { 'fill-rule': 'evenodd', d: 'M13.804 29.125h-1.776l-.954-4.909-2.502-3.762c-.884-1.339-1.54-2.582-1.995-3.806-.56-1.514-.832-2.958-.858-4.393a1.632 1.632 0 0 1-.805-1.4V4.52c0-.91.735-1.645 1.645-1.645h3.71c.91 0 1.645.735 1.645 1.645v6.335a1.63 1.63 0 0 1-.866 1.435c.402 4.27 4.611 6.834 4.655 6.86l.201.166 2.984 3.282 3.089-3.107h.367c.096 0 2.555.018 4.113 1.829 1.04 1.216 1.417 2.896 1.102 4.988l-.595 2.808H25.18l.665-3.123c.228-1.514-.009-2.713-.7-3.527-.744-.875-1.89-1.129-2.459-1.199l-3.85 3.868-4.138-4.559c-.823-.516-5.4-3.657-5.434-8.881 0-.534-.42-.954-.901-.954a.908.908 0 0 0-.902.884c-.07 1.453.175 2.852.753 4.401.411 1.103 1.006 2.232 1.811 3.448l2.695 4.06 1.085 5.591Zm-3.64-24.5h-3.5V9.63A2.564 2.564 0 0 1 8.353 9c.7 0 1.33.289 1.811.735v-5.11Z', 'clip-rule': 'evenodd', }, }), h('path', { attrs: { 'fill-rule': 'evenodd', d: 'M23.192 14.346a4.28 4.28 0 1 1-8.559-.001 4.28 4.28 0 0 1 8.56.001Zm-1.75.009a2.536 2.536 0 0 0-2.529-2.529 2.536 2.536 0 0 0-2.528 2.529 2.536 2.536 0 0 0 2.528 2.529 2.536 2.536 0 0 0 2.53-2.529Z', 'clip-rule': 'evenodd', }, })]); }, };