UNPKG

@justeattakeaway/pie-icons-vue

Version:
33 lines (31 loc) 1.6 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconOver16Filled', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--over16Filled', 'IconOver16Filled'); 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.29 7.987q.132-.045.273-.03a.652.652 0 0 1 .717.677.665.665 0 0 1-.717.679.665.665 0 0 1-.718-.692.65.65 0 0 1 .445-.634', }, }), h('path', { attrs: { 'fill-rule': 'evenodd', d: 'M3.625 2.313h8.75a1.313 1.313 0 0 1 1.313 1.312v8.75a1.313 1.313 0 0 1-1.313 1.313h-8.75a1.313 1.313 0 0 1-1.312-1.313v-8.75a1.313 1.313 0 0 1 1.312-1.312m.595 7.634h.831V5.813h-.595l-1.199.538.28.704.683-.254zm1.754-1.969c0 1.365.626 2.043 1.61 2.043a1.43 1.43 0 0 0 1.527-1.435 1.313 1.313 0 0 0-1.37-1.334 1.11 1.11 0 0 0-.935.407c0-.713.34-1.15.875-1.15a1.02 1.02 0 0 1 .757.318l.524-.577a1.6 1.6 0 0 0-1.277-.512c-.94 0-1.71.726-1.71 2.24m5.526.46h.875v-.876H11.5v-.875h-.875v.875H9.75v.875h.875v.876h.875z', 'clip-rule': 'evenodd', }, })]); }, };