@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
25 lines (22 loc) • 754 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var ClockFilledIcon = {
name: 'ClockFilledIcon',
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 28 28"
},
"class": "c-ficon c-ficon--clock-filled"
}, ctx.data]), [h("path", {
"attrs": {
"d": "M14 3c6.09 0 11 4.99 11 11s-4.99 11-11 11c-6.01.078-11-4.911-11-11C3 7.91 7.871 3 14 3zm2.16 11.785V7.832h-2.867v5.5H7.95v2.867h6.796c.825 0 1.415-.589 1.415-1.414z"
}
})]);
}
};
export { ClockFilledIcon as default };