UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.24 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconHouseLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--houseLarge', 'IconHouseLarge'); 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: 'M17.488 5.027a2.975 2.975 0 0 0-2.993 0c-4.375 2.8-11.314 10.098-11.62 10.37l1.269 1.207s.875-.954 2.222-2.25v13.02h19.259v-13.02c1.313 1.296 2.196 2.223 2.223 2.25l1.277-1.208c-.306-.271-7.245-7.569-11.637-10.369Zm-3.054 20.598V21.94a1.566 1.566 0 1 1 3.132 0v3.684h-3.132Zm9.441 0h-4.559V21.94a3.316 3.316 0 1 0-6.632 0v3.684H8.125V12.649a56.732 56.732 0 0 1 7.28-6.125 1.269 1.269 0 0 1 1.164 0 56.376 56.376 0 0 1 7.306 6.125v12.976Z', }, })]); }, };