@justeat/f-vue-icons
Version:
<div align="center"> <h1>f-vue-icons</h1>
25 lines (22 loc) • 731 B
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
var InfoIcon = {
name: 'InfoIcon',
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 24 24"
},
"class": "c-ficon c-ficon--info"
}, ctx.data]), [h("path", {
"attrs": {
"d": "M12 .133A11.867 11.867 0 1 0 23.867 12 11.882 11.882 0 0 0 12 .133ZM10.852 10.76h2.296v5.834h-2.296V10.76Zm2.68-3.354a1.532 1.532 0 1 1-3.064 0 1.532 1.532 0 0 1 3.063 0Z"
}
})]);
}
};
export { InfoIcon as default };