@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
25 lines (22 loc) • 769 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var ClockIcon = {
name: 'ClockIcon',
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 20 20"
},
"class": "c-ficon c-ficon--clock"
}, ctx.data]), [h("path", {
"attrs": {
"d": "M12.795 12.205a.417.417 0 1 1-.59.59l-2.622-2.622V6.25a.417.417 0 1 1 .834 0v3.577l2.378 2.378zM10 17.5a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15zm0-.833a6.667 6.667 0 1 0 0-13.334 6.667 6.667 0 0 0 0 13.334z"
}
})]);
}
};
export { ClockIcon as default };