UNPKG

@justeattakeaway/pie-icons-vue

Version:
47 lines (45 loc) 1.83 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.812.812 0 0 0-.862.053L10.453 7.29a.857.857 0 0 0-.375.714c0 .288.14.558.375.715l3.136 2.134a.852.852 0 0 0 .862.052.874.874 0 0 0 .462-.766v-4.27a.857.857 0 0 0-.462-.766Zm-.575 4.687-2.63-1.794 2.63-1.795v3.59Z', }, }), h('path', { attrs: { d: 'M5.548 7.281 2.41 5.147a.852.852 0 0 0-.862-.052.866.866 0 0 0-.453.766v4.269c0 .322.174.618.462.767.278.148.61.13.862-.053L5.556 8.71a.857.857 0 0 0 .375-.714.857.857 0 0 0-.375-.715h-.008ZM2.124 6.21l2.63 1.794L2.125 9.8v-3.59Z', }, }), h('path', { attrs: { d: 'M8.64 12.552H7.334v1.82H8.64v-1.82Z', }, }), h('path', { attrs: { d: 'M8.64 1.627H7.334v1.821H8.64v-1.82Z', }, }), h('path', { attrs: { d: 'M8.64 5.269H7.334v1.82H8.64V5.27Z', }, }), h('path', { attrs: { d: 'M8.64 8.91H7.334v1.821H8.64v-1.82Z', }, })]); }, };