@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
45 lines (40 loc) • 1.43 kB
JavaScript
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var _mergeJSXProps = require('@vue/babel-helper-vue-jsx-merge-props');
var configsVue = require('./pie-icons-configs/configs-vue.cjs');
var IconFullscreenExpand = {
name: 'IconFullscreenExpand',
props: {
size: configsVue.iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = configsVue.updateContextData(ctx, 'c-pieIcon c-pieIcon--fullscreenExpand', 'IconFullscreenExpand');
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: 'm5.99 3.406.737-1.312H2.094v4.633l1.312-.738V3.406H5.99Z',
},
}), h('path', {
attrs: {
d: 'M10.01 3.406h2.584V5.99l1.312.738V2.094H9.273l.738 1.312Z',
},
}), h('path', {
attrs: {
d: 'M12.594 10.01v2.584H10.01l-.738 1.312h4.633V9.273l-1.312.738Z',
},
}), h('path', {
attrs: {
d: 'm3.406 10.01-1.312-.737v4.633h4.633l-.738-1.312H3.406V10.01Z',
},
})]);
},
};
exports.default = IconFullscreenExpand;