UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.43 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconColumn', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--column', 'IconColumn'); 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: 'M12.594 1.884H10.23c-.84 0-1.531.691-1.531 1.531v9.17c0 .84.691 1.531 1.531 1.531h2.363c.84 0 1.531-.691 1.531-1.531v-9.17c0-.84-.691-1.531-1.531-1.531m.219 10.701a.217.217 0 0 1-.22.219h-2.362a.217.217 0 0 1-.219-.219v-9.17c0-.122.097-.219.22-.219h2.362c.122 0 .219.097.219.219z', }, }), h('path', { attrs: { d: 'M5.769 1.884H3.406c-.84 0-1.531.691-1.531 1.531v9.17c0 .84.691 1.531 1.531 1.531H5.77c.84 0 1.531-.691 1.531-1.531v-9.17c0-.84-.691-1.531-1.531-1.531m.218 10.701a.217.217 0 0 1-.218.219H3.406a.217.217 0 0 1-.219-.219v-9.17c0-.122.097-.219.22-.219h2.362c.122 0 .218.097.218.219z', }, })]); }, };