UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.02 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconDocumentLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--documentLarge', 'IconDocumentLarge'); 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: 'M18.625 3.75h-14v25.375h22.75V12.5a8.75 8.75 0 0 0-8.75-8.75m6.773 7h-5.023V5.728a7.04 7.04 0 0 1 5.023 5.022m.227 16.625H6.375V5.5h12.25v7h7zm-10.5-14H10.75v-1.75h4.375zm-4.375 7h7v1.75h-7zm0-4.375h10.5v1.75h-10.5z', }, })]); }, };