@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
27 lines (24 loc) • 739 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var CaretIcon = {
name: 'CaretIcon',
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 12 7"
},
"class": "c-ficon c-ficon--caret"
}, ctx.data]), [h("path", {
"attrs": {
"d": "M6.85 13.354l4.784-4.784a.518.518 0 01.732 0l4.784 4.784a.622.622 0 01-.44 1.063H7.29a.622.622 0 01-.44-1.063z",
"fill": "#000",
"transform": "translate(-6 -8)"
}
})]);
}
};
export { CaretIcon as default };