UNPKG

@justeattakeaway/pie-icons-vue

Version:
47 lines (45 loc) 1.78 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconImageFlipHorizontal', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--imageFlipHorizontal', 'IconImageFlipHorizontal'); 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: 'M14.451 5.103a.81.81 0 0 0-.862.053L10.453 7.29a.86.86 0 0 0-.375.714c0 .288.14.558.375.715l3.136 2.134a.85.85 0 0 0 .862.052.87.87 0 0 0 .462-.766v-4.27a.86.86 0 0 0-.462-.766m-.575 4.687-2.63-1.794 2.63-1.795z', }, }), h('path', { attrs: { d: 'M5.548 7.281 2.41 5.147a.85.85 0 0 0-.862-.052.87.87 0 0 0-.453.766v4.269c0 .322.174.618.462.767.278.148.61.13.862-.053L5.556 8.71a.86.86 0 0 0 .375-.714.86.86 0 0 0-.375-.715zM2.124 6.21l2.63 1.794L2.125 9.8z', }, }), h('path', { attrs: { d: 'M8.64 12.552H7.334v1.82H8.64z', }, }), h('path', { attrs: { d: 'M8.64 1.627H7.334v1.821H8.64z', }, }), h('path', { attrs: { d: 'M8.64 5.269H7.334v1.82H8.64z', }, }), h('path', { attrs: { d: 'M8.64 8.91H7.334v1.821H8.64z', }, })]); }, };