@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
27 lines (24 loc) • 764 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var ArrowIcon = {
name: 'ArrowIcon',
props: {},
functional: true,
render(h, ctx) {
const attrs = ctx.data.attrs || {};
ctx.data.attrs = attrs;
return h("svg", _mergeJSXProps([{
"attrs": {
"xmlns": "http://www.w3.org/2000/svg",
"viewBox": "0 0 16 16"
},
"class": "c-ficon c-ficon--arrow"
}, ctx.data]), [h("path", {
"attrs": {
"fill": "#000",
"fill-rule": "evenodd",
"d": "M1 6.958h11.17L7.459 2.247A1 1 0 0 1 8.873.833l6.419 6.419a1 1 0 0 1 0 1.415l-6.419 6.419a1 1 0 0 1-1.414-1.414L12.17 8.96H1a1 1 0 0 1 0-2.002Z"
}
})]);
}
};
export { ArrowIcon as default };