UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.12 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconNavigationCollapse', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--navigationCollapse', 'IconNavigationCollapse'); 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: 'M2.32 2.373V13.45h8.64a3.325 3.325 0 0 0 3.331-3.322V2.373H2.321Zm1.338 1.33h1.33v8.417h-1.33V3.702Zm9.304 6.423a1.994 1.994 0 0 1-1.994 1.994H6.317V3.702h6.645v6.425Z', }, }), h('path', { attrs: { d: 'M11.793 9.666v-3.5L9.188 7.99l2.605 1.675Z', }, })]); }, };