UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.26 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconArchiveLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--archiveLarge', 'IconArchiveLarge'); 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: 'M26.386 4.625H5.614a.993.993 0 0 0-.989.989V9.76c0 .543.446.989.989.989h.761v13.755a2.872 2.872 0 0 0 2.87 2.87h13.501a2.872 2.872 0 0 0 2.87-2.87V10.75h.762a.993.993 0 0 0 .988-.989V5.614a.993.993 0 0 0-.988-.989h.008Zm-2.511 19.88c0 .621-.508 1.12-1.12 1.12H9.254c-.621 0-1.12-.508-1.12-1.12V10.75h15.75v13.755h-.009ZM25.625 9H6.375V6.375h19.25V9Z', }, }), h('path', { attrs: { d: 'M19.5 12.5h-7v1.75h7V12.5Z', }, })]); }, };