@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
25 lines (22 loc) • 666 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var TickIcon = {
name: 'TickIcon',
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 17 12"
},
"class": "c-ficon c-ficon--tick"
}, ctx.data]), [h("path", {
"attrs": {
"d": "M5.53 10.57L15.65.45a.4.4 0 1 1 .57.57l-10.4 10.4a.4.4 0 0 1-.57 0l-4.8-4.8a.4.4 0 1 1 .57-.57l4.51 4.52z"
}
})]);
}
};
export { TickIcon as default };