@nr1e/qwik-icons 0.0.21 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/icons/mdi-aws.qwik.cjs +16 -0
- package/lib/components/icons/mdi-aws.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bacteria-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bacteria-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bacteria.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bacteria.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bar-chart.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bar-chart.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bell-curve-cumulative.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bell-curve-cumulative.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bell-curve.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bell-curve.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-bar.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-bar.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-bart-stacked.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-bart-stacked.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-box-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-box-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-finance.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-finance.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-gantt.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-gantt.qwik.mjs +16 -0
- package/lib/components/icons/mdi-chart-line.qwik.cjs +16 -0
- package/lib/components/icons/mdi-chart-line.qwik.mjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-gauge.qwik.cjs +16 -0
- package/lib/components/icons/mdi-gauge.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-speedometer.qwik.cjs +16 -0
- package/lib/components/icons/mdi-speedometer.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +40 -0
- package/lib/index.qwik.mjs +40 -0
- package/lib-types/components/icons/mdi-aws.d.ts +2 -0
- package/lib-types/components/icons/mdi-bacteria-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-bacteria.d.ts +2 -0
- package/lib-types/components/icons/mdi-bar-chart.d.ts +2 -0
- package/lib-types/components/icons/mdi-bell-curve-cumulative.d.ts +2 -0
- package/lib-types/components/icons/mdi-bell-curve.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-bar.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-bart-stacked.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-box-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-finance.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-gantt.d.ts +2 -0
- package/lib-types/components/icons/mdi-chart-line.d.ts +2 -0
- package/lib-types/components/icons/mdi-clipboard-pulse-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-clipboard-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-gauge.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart.d.ts +2 -0
- package/lib-types/components/icons/mdi-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-speedometer.d.ts +2 -0
- package/lib-types/index.d.ts +20 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiAws = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M7.64 10.38c0 .25.02.45.07.62c.05.12.12.28.21.46c.04.04.05.1.05.15c0 .07-.04.13-.13.2l-.42.28c-.06.04-.12.06-.17.06c-.07 0-.13-.04-.2-.1c-.09-.1-.17-.2-.24-.31c-.06-.11-.13-.24-.2-.39c-.52.61-1.17.92-1.96.92c-.56 0-1-.16-1.33-.48c-.32-.32-.49-.75-.49-1.29c0-.55.2-1 .6-1.36c.41-.34.95-.52 1.63-.52c.23 0 .44.02.71.06c.23.03.5.08.76.14v-.48c0-.51-.1-.84-.31-1.07c-.22-.21-.57-.3-1.08-.3c-.24 0-.48.03-.72.08c-.25.06-.49.13-.72.23c-.11.04-.2.07-.23.08c-.05.02-.08.02-.11.02c-.09 0-.14-.06-.14-.2v-.33c0-.1.01-.18.05-.23q.045-.075.18-.12c.24-.14.51-.24.84-.32a4 4 0 0 1 1.04-.13q1.185 0 1.74.54c.37.36.55.91.55 1.64v2.15zm-2.7 1.02c.22 0 .44-.04.68-.12s.45-.23.63-.43c.11-.13.19-.27.25-.43c0-.16.05-.35.05-.58v-.27c-.2-.07-.4-.07-.62-.12a7 7 0 0 0-.62-.04c-.45 0-.77.09-.99.27s-.32.43-.32.76c0 .32.07.56.24.71c.16.17.39.25.7.25m5.34.71a.6.6 0 0 1-.28-.06c-.03-.05-.08-.14-.12-.26L8.32 6.65c-.04-.15-.06-.22-.06-.27c0-.11.05-.17.16-.17h.65c.13 0 .22.02.26.07c.06.04.1.13.14.26l1.11 4.4l1.04-4.4c.03-.13.07-.22.13-.26c.05-.04.14-.07.25-.07h.55c.12 0 .21.02.26.07c.05.04.1.13.13.26L14 11l1.14-4.46c.04-.13.09-.22.13-.26c.06-.04.14-.07.26-.07h.62c.11 0 .17.06.17.17c0 .03-.01.07-.02.12c0 0-.02.08-.04.15l-1.61 5.14c-.04.14-.08.21-.15.26c-.04.04-.13.07-.24.07h-.57c-.13 0-.19-.02-.27-.07a.45.45 0 0 1-.12-.26L12.27 7.5l-1.03 4.28q-.045.195-.12.27a.5.5 0 0 1-.27.06zm8.55.18c-.33 0-.7-.04-1.03-.12s-.59-.17-.76-.26a.5.5 0 0 1-.21-.19a.4.4 0 0 1-.04-.18v-.34c0-.14.05-.2.15-.2h.12c.04 0 .1.05.17.08c.22.1.47.18.73.23c.27.05.54.08.79.08c.42 0 .75-.07.97-.22c.23-.17.35-.36.35-.63c0-.19-.07-.34-.18-.47c-.12-.12-.35-.24-.67-.34l-.97-.3c-.48-.16-.84-.38-1.06-.68a1.58 1.58 0 0 1-.33-.97c0-.28.06-.52.18-.73c.12-.22.28-.4.46-.55c.22-.15.44-.26.71-.34q.39-.12.84-.12q.21 0 .45.03c.14.02.28.05.42.07c.14.04.26.07.38.11s.2.08.28.12c.09.05.16.1.2.16s.06.13.06.22v.32q0 .21-.15.21c-.05 0-.14-.03-.26-.08c-.37-.17-.8-.26-1.27-.26c-.38 0-.66.06-.89.19c-.2.12-.31.32-.31.59c0 .19.07.35.2.47c.13.13.38.25.73.37l.95.3c.48.14.82.36 1.03.64q.3.405.3.93c0 .28-.06.54-.17.77c-.12.22-.28.42-.5.58c-.19.17-.44.29-.72.38s-.62.13-.95.13m1.25 3.24C17.89 17.14 14.71 18 12 18c-3.85 0-7.3-1.42-9.91-3.77c-.21-.19-.02-.44.23-.29c2.82 1.63 6.29 2.62 9.89 2.62c2.43 0 5.1-.5 7.55-1.56c.37-.15.68.26.32.53M21 14.5c-.29-.37-1.86-.18-2.57-.1c-.21.03-.24-.16-.05-.3c1.25-.87 3.31-.6 3.54-.33c.24.3-.06 2.36-1.23 3.34c-.19.15-.36.07-.28-.11c.27-.68.86-2.16.59-2.5"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAws = MdiAws;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiAws = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M7.64 10.38c0 .25.02.45.07.62c.05.12.12.28.21.46c.04.04.05.1.05.15c0 .07-.04.13-.13.2l-.42.28c-.06.04-.12.06-.17.06c-.07 0-.13-.04-.2-.1c-.09-.1-.17-.2-.24-.31c-.06-.11-.13-.24-.2-.39c-.52.61-1.17.92-1.96.92c-.56 0-1-.16-1.33-.48c-.32-.32-.49-.75-.49-1.29c0-.55.2-1 .6-1.36c.41-.34.95-.52 1.63-.52c.23 0 .44.02.71.06c.23.03.5.08.76.14v-.48c0-.51-.1-.84-.31-1.07c-.22-.21-.57-.3-1.08-.3c-.24 0-.48.03-.72.08c-.25.06-.49.13-.72.23c-.11.04-.2.07-.23.08c-.05.02-.08.02-.11.02c-.09 0-.14-.06-.14-.2v-.33c0-.1.01-.18.05-.23q.045-.075.18-.12c.24-.14.51-.24.84-.32a4 4 0 0 1 1.04-.13q1.185 0 1.74.54c.37.36.55.91.55 1.64v2.15zm-2.7 1.02c.22 0 .44-.04.68-.12s.45-.23.63-.43c.11-.13.19-.27.25-.43c0-.16.05-.35.05-.58v-.27c-.2-.07-.4-.07-.62-.12a7 7 0 0 0-.62-.04c-.45 0-.77.09-.99.27s-.32.43-.32.76c0 .32.07.56.24.71c.16.17.39.25.7.25m5.34.71a.6.6 0 0 1-.28-.06c-.03-.05-.08-.14-.12-.26L8.32 6.65c-.04-.15-.06-.22-.06-.27c0-.11.05-.17.16-.17h.65c.13 0 .22.02.26.07c.06.04.1.13.14.26l1.11 4.4l1.04-4.4c.03-.13.07-.22.13-.26c.05-.04.14-.07.25-.07h.55c.12 0 .21.02.26.07c.05.04.1.13.13.26L14 11l1.14-4.46c.04-.13.09-.22.13-.26c.06-.04.14-.07.26-.07h.62c.11 0 .17.06.17.17c0 .03-.01.07-.02.12c0 0-.02.08-.04.15l-1.61 5.14c-.04.14-.08.21-.15.26c-.04.04-.13.07-.24.07h-.57c-.13 0-.19-.02-.27-.07a.45.45 0 0 1-.12-.26L12.27 7.5l-1.03 4.28q-.045.195-.12.27a.5.5 0 0 1-.27.06zm8.55.18c-.33 0-.7-.04-1.03-.12s-.59-.17-.76-.26a.5.5 0 0 1-.21-.19a.4.4 0 0 1-.04-.18v-.34c0-.14.05-.2.15-.2h.12c.04 0 .1.05.17.08c.22.1.47.18.73.23c.27.05.54.08.79.08c.42 0 .75-.07.97-.22c.23-.17.35-.36.35-.63c0-.19-.07-.34-.18-.47c-.12-.12-.35-.24-.67-.34l-.97-.3c-.48-.16-.84-.38-1.06-.68a1.58 1.58 0 0 1-.33-.97c0-.28.06-.52.18-.73c.12-.22.28-.4.46-.55c.22-.15.44-.26.71-.34q.39-.12.84-.12q.21 0 .45.03c.14.02.28.05.42.07c.14.04.26.07.38.11s.2.08.28.12c.09.05.16.1.2.16s.06.13.06.22v.32q0 .21-.15.21c-.05 0-.14-.03-.26-.08c-.37-.17-.8-.26-1.27-.26c-.38 0-.66.06-.89.19c-.2.12-.31.32-.31.59c0 .19.07.35.2.47c.13.13.38.25.73.37l.95.3c.48.14.82.36 1.03.64q.3.405.3.93c0 .28-.06.54-.17.77c-.12.22-.28.42-.5.58c-.19.17-.44.29-.72.38s-.62.13-.95.13m1.25 3.24C17.89 17.14 14.71 18 12 18c-3.85 0-7.3-1.42-9.91-3.77c-.21-.19-.02-.44.23-.29c2.82 1.63 6.29 2.62 9.89 2.62c2.43 0 5.1-.5 7.55-1.56c.37-.15.68.26.32.53M21 14.5c-.29-.37-1.86-.18-2.57-.1c-.21.03-.24-.16-.05-.3c1.25-.87 3.31-.6 3.54-.33c.24.3-.06 2.36-1.23 3.34c-.19.15-.36.07-.28-.11c.27-.68.86-2.16.59-2.5"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAws
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBacteriaOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M9 2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29L1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9l.63 1.9l2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59l1.11 1.66l2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91l1.79.9l1-2l-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52l1.41-1.42l-1.33-1.34c.38-.51.63-1.15.63-1.95c0-.5-.05-.92-.12-1.32l1.57-.78l-.9-1.8l-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96l-1.9-.64l-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87l-.9-1.8l-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32l-1.66-1.11l-1.41 2.12c-.48-.23-1.06-.41-1.76-.5M15 18c-2.94 0-5.19-.82-6.69-2.44C5.68 12.72 6 8.2 6 8.17v-.14C6 7.1 6.39 6 8 6c2.63 0 2.97 1.43 3 2c0 2 1.6 5 6 5c.33 0 2 .15 2 3c0 1.89-3.97 2-4 2M8.5 8A1.5 1.5 0 0 0 7 9.5A1.5 1.5 0 0 0 8.5 11A1.5 1.5 0 0 0 10 9.5A1.5 1.5 0 0 0 8.5 8m2.5 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m4.5 2a1.5 1.5 0 0 0-1.5 1.5a1.5 1.5 0 0 0 1.5 1.5a1.5 1.5 0 0 0 1.5-1.5a1.5 1.5 0 0 0-1.5-1.5"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBacteriaOutline = MdiBacteriaOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBacteriaOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M9 2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29L1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9l.63 1.9l2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59l1.11 1.66l2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91l1.79.9l1-2l-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52l1.41-1.42l-1.33-1.34c.38-.51.63-1.15.63-1.95c0-.5-.05-.92-.12-1.32l1.57-.78l-.9-1.8l-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96l-1.9-.64l-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87l-.9-1.8l-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32l-1.66-1.11l-1.41 2.12c-.48-.23-1.06-.41-1.76-.5M15 18c-2.94 0-5.19-.82-6.69-2.44C5.68 12.72 6 8.2 6 8.17v-.14C6 7.1 6.39 6 8 6c2.63 0 2.97 1.43 3 2c0 2 1.6 5 6 5c.33 0 2 .15 2 3c0 1.89-3.97 2-4 2M8.5 8A1.5 1.5 0 0 0 7 9.5A1.5 1.5 0 0 0 8.5 11A1.5 1.5 0 0 0 10 9.5A1.5 1.5 0 0 0 8.5 8m2.5 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m4.5 2a1.5 1.5 0 0 0-1.5 1.5a1.5 1.5 0 0 0 1.5 1.5a1.5 1.5 0 0 0 1.5-1.5a1.5 1.5 0 0 0-1.5-1.5"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBacteriaOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBacteria = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M21 16c0-.5-.05-.92-.12-1.32l1.57-.78l-.9-1.8l-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96l-1.9-.64l-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87l-.9-1.8l-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32l-1.66-1.11l-1.41 2.12c-.48-.23-1.06-.41-1.76-.5V2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29L1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9l.63 1.9l2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59l1.11 1.66l2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91l1.79.9l1-2l-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52l1.41-1.42l-1.33-1.34c.38-.51.63-1.15.63-1.95M8.5 11A1.5 1.5 0 0 1 7 9.5A1.5 1.5 0 0 1 8.5 8A1.5 1.5 0 0 1 10 9.5A1.5 1.5 0 0 1 8.5 11m2.5 3a1 1 0 0 1-1-1a1 1 0 0 1 1-1a1 1 0 0 1 1 1a1 1 0 0 1-1 1m4.5 3a1.5 1.5 0 0 1-1.5-1.5a1.5 1.5 0 0 1 1.5-1.5a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBacteria = MdiBacteria;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBacteria = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M21 16c0-.5-.05-.92-.12-1.32l1.57-.78l-.9-1.8l-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96l-1.9-.64l-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87l-.9-1.8l-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32l-1.66-1.11l-1.41 2.12c-.48-.23-1.06-.41-1.76-.5V2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29L1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9l.63 1.9l2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59l1.11 1.66l2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91l1.79.9l1-2l-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52l1.41-1.42l-1.33-1.34c.38-.51.63-1.15.63-1.95M8.5 11A1.5 1.5 0 0 1 7 9.5A1.5 1.5 0 0 1 8.5 8A1.5 1.5 0 0 1 10 9.5A1.5 1.5 0 0 1 8.5 11m2.5 3a1 1 0 0 1-1-1a1 1 0 0 1 1-1a1 1 0 0 1 1 1a1 1 0 0 1-1 1m4.5 3a1.5 1.5 0 0 1-1.5-1.5a1.5 1.5 0 0 1 1.5-1.5a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBacteria
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBarChart = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M3 22V8h4v14zm7 0V2h4v20zm7 0v-8h4v8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBarChart = MdiBarChart;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBarChart = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M3 22V8h4v14zm7 0V2h4v20zm7 0v-8h4v8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBarChart
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBellCurveCumulative = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M4 19v1h18v2H2V2h2v15c3 0 6-2 8.1-5.6c3-5 6.3-7.4 9.9-7.4v2c-2.8 0-5.5 2.1-8.1 6.5C11.3 16.6 7.7 19 4 19"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBellCurveCumulative = MdiBellCurveCumulative;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBellCurveCumulative = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M4 19v1h18v2H2V2h2v15c3 0 6-2 8.1-5.6c3-5 6.3-7.4 9.9-7.4v2c-2.8 0-5.5 2.1-8.1 6.5C11.3 16.6 7.7 19 4 19"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBellCurveCumulative
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBellCurve = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M9.96 11.31C10.82 8.1 11.5 6 13 6s2.18 2.1 3.04 5.31C17 14.92 18.1 19 22 19v-2c-2.2 0-3-2.46-4.03-6.2C17.08 7.46 16.15 4 13 4s-4.08 3.46-4.97 6.8C7.03 14.54 6.2 17 4 17V2H2v20h20v-2H4v-1c3.9 0 5-4.08 5.96-7.69"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBellCurve = MdiBellCurve;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBellCurve = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M9.96 11.31C10.82 8.1 11.5 6 13 6s2.18 2.1 3.04 5.31C17 14.92 18.1 19 22 19v-2c-2.2 0-3-2.46-4.03-6.2C17.08 7.46 16.15 4 13 4s-4.08 3.46-4.97 6.8C7.03 14.54 6.2 17 4 17V2H2v20h20v-2H4v-1c3.9 0 5-4.08 5.96-7.69"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBellCurve
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartBar = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M22 21H2V3h2v16h2v-9h4v9h2V6h4v13h2v-5h4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartBar = MdiChartBar;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartBar = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M22 21H2V3h2v16h2v-9h4v9h2V6h4v13h2v-5h4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartBar
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartBartStacked = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M22 21H2V3h2v16h2v-2h4v2h2v-3h4v3h2v-2h4zm-4-7h4v2h-4zm-6-8h4v3h-4zm4 9h-4v-5h4zM6 10h4v2H6zm4 6H6v-3h4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartBartStacked = MdiChartBartStacked;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartBartStacked = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M22 21H2V3h2v16h2v-2h4v2h2v-3h4v3h2v-2h4zm-4-7h4v2h-4zm-6-8h4v3h-4zm4 9h-4v-5h4zM6 10h4v2H6zm4 6H6v-3h4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartBartStacked
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartBoxOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M9 17H7v-7h2zm4 0h-2V7h2zm4 0h-2v-4h2zm2 2H5V5h14v14.1M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartBoxOutline = MdiChartBoxOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartBoxOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M9 17H7v-7h2zm4 0h-2V7h2zm4 0h-2v-4h2zm2 2H5V5h14v14.1M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartBoxOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartFinance = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "m6 16.5l-3 2.94V11h3m5 3.66l-1.57-1.34L8 14.64V7h3m5 6l-3 3V3h3m2.81 9.81L17 11h5v5l-1.79-1.79L13 21.36l-3.47-3.02L5.75 22H3l6.47-6.34L13 18.64"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartFinance = MdiChartFinance;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartFinance = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "m6 16.5l-3 2.94V11h3m5 3.66l-1.57-1.34L8 14.64V7h3m5 6l-3 3V3h3m2.81 9.81L17 11h5v5l-1.79-1.79L13 21.36l-3.47-3.02L5.75 22H3l6.47-6.34L13 18.64"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartFinance
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartGantt = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M2 5h8V2h2v20h-2v-4H6v-3h4v-2H4v-3h6V8H2zm12 0h3v3h-3zm0 5h5v3h-5zm0 5h8v3h-8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartGantt = MdiChartGantt;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartGantt = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M2 5h8V2h2v20h-2v-4H6v-3h4v-2H4v-3h6V8H2zm12 0h3v3h-3zm0 5h5v3h-5zm0 5h8v3h-8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartGantt
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiChartLine = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "m16 11.78l4.24-7.33l1.73 1l-5.23 9.05l-6.51-3.75L5.46 19H22v2H2V3h2v14.54L9.5 8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiChartLine = MdiChartLine;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiChartLine = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "m16 11.78l4.24-7.33l1.73 1l-5.23 9.05l-6.51-3.75L5.46 19H22v2H2V3h2v14.54L9.5 8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiChartLine
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiClipboardPulseOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 15h3.11l1.51-2.85l.76 5.77l3.69-4.71L15.89 15H19v4H5zm14-1.54h-2.47l-2.6-2.6l-2.49 3.19l-.94-6.97l-3.33 6.38H5V5h2v1h10V5h2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiClipboardPulseOutline = MdiClipboardPulseOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiClipboardPulseOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 15h3.11l1.51-2.85l.76 5.77l3.69-4.71L15.89 15H19v4H5zm14-1.54h-2.47l-2.6-2.6l-2.49 3.19l-.94-6.97l-3.33 6.38H5V5h2v1h10V5h2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiClipboardPulseOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiClipboardPulse = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 13.46h2.17l3.33-6.38l.94 6.97l2.49-3.19l2.6 2.6H19V15h-3.11l-1.82-1.79l-3.69 4.71l-.76-5.77L8.11 15H5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiClipboardPulse = MdiClipboardPulse;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiClipboardPulse = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 13.46h2.17l3.33-6.38l.94 6.97l2.49-3.19l2.6 2.6H19V15h-3.11l-1.82-1.79l-3.69 4.71l-.76-5.77L8.11 15H5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiClipboardPulse
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiGauge = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8c0 2.4-1 4.5-2.7 6c-1.4-1.3-3.3-2-5.3-2s-3.8.7-5.3 2C5 16.5 4 14.4 4 12a8 8 0 0 1 8-8m2 1.89c-.38.01-.74.26-.9.65l-1.29 3.23l-.1.23c-.71.13-1.3.6-1.57 1.26c-.41 1.03.09 2.19 1.12 2.6s2.19-.09 2.6-1.12c.26-.66.14-1.42-.29-1.98l.1-.26l1.29-3.21l.01-.03c.2-.51-.05-1.09-.56-1.3c-.13-.05-.26-.07-.41-.07M10 6a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1M7 9a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m10 0a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiGauge = MdiGauge;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiGauge = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8c0 2.4-1 4.5-2.7 6c-1.4-1.3-3.3-2-5.3-2s-3.8.7-5.3 2C5 16.5 4 14.4 4 12a8 8 0 0 1 8-8m2 1.89c-.38.01-.74.26-.9.65l-1.29 3.23l-.1.23c-.71.13-1.3.6-1.57 1.26c-.41 1.03.09 2.19 1.12 2.6s2.19-.09 2.6-1.12c.26-.66.14-1.42-.29-1.98l.1-.26l1.29-3.21l.01-.03c.2-.51-.05-1.09-.56-1.3c-.13-.05-.26-.07-.41-.07M10 6a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1M7 9a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m10 0a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiGauge
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiHeartOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "m12.1 18.55l-.1.1l-.11-.1C7.14 14.24 4 11.39 4 8.5C4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5c0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3C4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5C22 5.41 19.58 3 16.5 3"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeartOutline = MdiHeartOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiHeartOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "m12.1 18.55l-.1.1l-.11-.1C7.14 14.24 4 11.39 4 8.5C4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5c0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3C4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5C22 5.41 19.58 3 16.5 3"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeartOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiHeartPulse = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M7.5 4A5.5 5.5 0 0 0 2 9.5c0 .5.09 1 .22 1.5H6.3l1.27-3.37c.3-.8 1.48-.88 1.86 0L11.5 13l.59-1.42c.13-.33.48-.58.91-.58h8.78c.13-.5.22-1 .22-1.5A5.5 5.5 0 0 0 16.5 4c-1.86 0-3.5.93-4.5 2.34C11 4.93 9.36 4 7.5 4M3 12.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1h2.44L11 20c1 .9 1 .9 2 0l5.56-5.5H21a1 1 0 0 0 1-1a1 1 0 0 0-1-1h-7.6l-.93 2.3c-.4 1.01-1.55.87-1.92.03L8.5 9.5l-.96 2.33c-.15.38-.49.67-.94.67z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeartPulse = MdiHeartPulse;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiHeartPulse = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M7.5 4A5.5 5.5 0 0 0 2 9.5c0 .5.09 1 .22 1.5H6.3l1.27-3.37c.3-.8 1.48-.88 1.86 0L11.5 13l.59-1.42c.13-.33.48-.58.91-.58h8.78c.13-.5.22-1 .22-1.5A5.5 5.5 0 0 0 16.5 4c-1.86 0-3.5.93-4.5 2.34C11 4.93 9.36 4 7.5 4M3 12.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1h2.44L11 20c1 .9 1 .9 2 0l5.56-5.5H21a1 1 0 0 0 1-1a1 1 0 0 0-1-1h-7.6l-.93 2.3c-.4 1.01-1.55.87-1.92.03L8.5 9.5l-.96 2.33c-.15.38-.49.67-.94.67z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeartPulse
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiHeart = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "m12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeart = MdiHeart;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiHeart = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "m12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeart
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiPulse = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M3 13h2.79l4.31-8.21l1.18 8.96l3.22-4.09L17.83 13H21v2h-4l-2.33-2.33l-4.75 6.06l-.98-7.42L7 15H3z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPulse = MdiPulse;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiPulse = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M3 13h2.79l4.31-8.21l1.18 8.96l3.22-4.09L17.83 13H21v2h-4l-2.33-2.33l-4.75 6.06l-.98-7.42L7 15H3z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPulse
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiSpeedometer = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M12 16a3 3 0 0 1-3-3c0-1.12.61-2.1 1.5-2.61l9.71-5.62l-5.53 9.58c-.5.98-1.51 1.65-2.68 1.65m0-13c1.81 0 3.5.5 4.97 1.32l-2.1 1.21C14 5.19 13 5 12 5a8 8 0 0 0-8 8c0 2.21.89 4.21 2.34 5.65h.01c.39.39.39 1.02 0 1.41s-1.03.39-1.42.01A9.97 9.97 0 0 1 2 13A10 10 0 0 1 12 3m10 10c0 2.76-1.12 5.26-2.93 7.07c-.39.38-1.02.38-1.41-.01a.996.996 0 0 1 0-1.41A7.95 7.95 0 0 0 20 13c0-1-.19-2-.54-2.9L20.67 8C21.5 9.5 22 11.18 22 13"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiSpeedometer = MdiSpeedometer;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiSpeedometer = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M12 16a3 3 0 0 1-3-3c0-1.12.61-2.1 1.5-2.61l9.71-5.62l-5.53 9.58c-.5.98-1.51 1.65-2.68 1.65m0-13c1.81 0 3.5.5 4.97 1.32l-2.1 1.21C14 5.19 13 5 12 5a8 8 0 0 0-8 8c0 2.21.89 4.21 2.34 5.65h.01c.39.39.39 1.02 0 1.41s-1.03.39-1.42.01A9.97 9.97 0 0 1 2 13A10 10 0 0 1 12 3m10 10c0 2.76-1.12 5.26-2.93 7.07c-.39.38-1.02.38-1.41-.01a.996.996 0 0 1 0-1.41A7.95 7.95 0 0 0 20 13c0-1-.19-2-.54-2.9L20.67 8C21.5 9.5 22 11.18 22 13"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiSpeedometer
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -16,17 +16,31 @@ const mdiAlertOutline = require("./components/icons/mdi-alert-outline.qwik.cjs")
|
|
|
16
16
|
const mdiApi = require("./components/icons/mdi-api.qwik.cjs");
|
|
17
17
|
const mdiArrowBackCircle = require("./components/icons/mdi-arrow-back-circle.qwik.cjs");
|
|
18
18
|
const mdiArrowForwardCircle = require("./components/icons/mdi-arrow-forward-circle.qwik.cjs");
|
|
19
|
+
const mdiAws = require("./components/icons/mdi-aws.qwik.cjs");
|
|
20
|
+
const mdiBacteria = require("./components/icons/mdi-bacteria.qwik.cjs");
|
|
21
|
+
const mdiBacteriaOutline = require("./components/icons/mdi-bacteria-outline.qwik.cjs");
|
|
19
22
|
const mdiBank = require("./components/icons/mdi-bank.qwik.cjs");
|
|
20
23
|
const mdiBankOutline = require("./components/icons/mdi-bank-outline.qwik.cjs");
|
|
24
|
+
const mdiBarChart = require("./components/icons/mdi-bar-chart.qwik.cjs");
|
|
21
25
|
const mdiBarCode = require("./components/icons/mdi-bar-code.qwik.cjs");
|
|
26
|
+
const mdiBellCurve = require("./components/icons/mdi-bell-curve.qwik.cjs");
|
|
27
|
+
const mdiBellCurveCumulative = require("./components/icons/mdi-bell-curve-cumulative.qwik.cjs");
|
|
22
28
|
const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
|
|
23
29
|
const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
|
|
24
30
|
const mdiBuilding = require("./components/icons/mdi-building.qwik.cjs");
|
|
25
31
|
const mdiCalendar = require("./components/icons/mdi-calendar.qwik.cjs");
|
|
32
|
+
const mdiChartBar = require("./components/icons/mdi-chart-bar.qwik.cjs");
|
|
33
|
+
const mdiChartBartStacked = require("./components/icons/mdi-chart-bart-stacked.qwik.cjs");
|
|
34
|
+
const mdiChartBoxOutline = require("./components/icons/mdi-chart-box-outline.qwik.cjs");
|
|
35
|
+
const mdiChartFinance = require("./components/icons/mdi-chart-finance.qwik.cjs");
|
|
36
|
+
const mdiChartGantt = require("./components/icons/mdi-chart-gantt.qwik.cjs");
|
|
37
|
+
const mdiChartLine = require("./components/icons/mdi-chart-line.qwik.cjs");
|
|
26
38
|
const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
27
39
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
28
40
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
29
41
|
const mdiChevronUp = require("./components/icons/mdi-chevron-up.qwik.cjs");
|
|
42
|
+
const mdiClipboardPulse = require("./components/icons/mdi-clipboard-pulse.qwik.cjs");
|
|
43
|
+
const mdiClipboardPulseOutline = require("./components/icons/mdi-clipboard-pulse-outline.qwik.cjs");
|
|
30
44
|
const mdiClose = require("./components/icons/mdi-close.qwik.cjs");
|
|
31
45
|
const mdiCloudDownload = require("./components/icons/mdi-cloud-download.qwik.cjs");
|
|
32
46
|
const mdiCloudDownloadOutline = require("./components/icons/mdi-cloud-download-outline.qwik.cjs");
|
|
@@ -62,11 +76,15 @@ const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs")
|
|
|
62
76
|
const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
|
|
63
77
|
const mdiError = require("./components/icons/mdi-error.qwik.cjs");
|
|
64
78
|
const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
|
|
79
|
+
const mdiGauge = require("./components/icons/mdi-gauge.qwik.cjs");
|
|
65
80
|
const mdiGearOutline = require("./components/icons/mdi-gear-outline.qwik.cjs");
|
|
66
81
|
const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
67
82
|
const mdiGoogle = require("./components/icons/mdi-google.qwik.cjs");
|
|
68
83
|
const mdiGoogleDrive = require("./components/icons/mdi-google-drive.qwik.cjs");
|
|
69
84
|
const mdiHamburgerMenu = require("./components/icons/mdi-hamburger-menu.qwik.cjs");
|
|
85
|
+
const mdiHeart = require("./components/icons/mdi-heart.qwik.cjs");
|
|
86
|
+
const mdiHeartOutline = require("./components/icons/mdi-heart-outline.qwik.cjs");
|
|
87
|
+
const mdiHeartPulse = require("./components/icons/mdi-heart-pulse.qwik.cjs");
|
|
70
88
|
const mdiInformation = require("./components/icons/mdi-information.qwik.cjs");
|
|
71
89
|
const mdiInformationBox = require("./components/icons/mdi-information-box.qwik.cjs");
|
|
72
90
|
const mdiInformationBoxOutline = require("./components/icons/mdi-information-box-outline.qwik.cjs");
|
|
@@ -99,6 +117,7 @@ const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
|
|
|
99
117
|
const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
|
|
100
118
|
const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
|
|
101
119
|
const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
|
|
120
|
+
const mdiPulse = require("./components/icons/mdi-pulse.qwik.cjs");
|
|
102
121
|
const mdiQrCode = require("./components/icons/mdi-qr-code.qwik.cjs");
|
|
103
122
|
const mdiRefresh = require("./components/icons/mdi-refresh.qwik.cjs");
|
|
104
123
|
const mdiRocket = require("./components/icons/mdi-rocket.qwik.cjs");
|
|
@@ -109,6 +128,7 @@ const mdiSearch = require("./components/icons/mdi-search.qwik.cjs");
|
|
|
109
128
|
const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs");
|
|
110
129
|
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
111
130
|
const mdiShieldCrownOutline = require("./components/icons/mdi-shield-crown-outline.qwik.cjs");
|
|
131
|
+
const mdiSpeedometer = require("./components/icons/mdi-speedometer.qwik.cjs");
|
|
112
132
|
const mdiUser = require("./components/icons/mdi-user.qwik.cjs");
|
|
113
133
|
const mdiUserOutline = require("./components/icons/mdi-user-outline.qwik.cjs");
|
|
114
134
|
const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs");
|
|
@@ -235,17 +255,31 @@ exports.MdiAlertOutline = mdiAlertOutline.MdiAlertOutline;
|
|
|
235
255
|
exports.MdiApi = mdiApi.MdiApi;
|
|
236
256
|
exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
|
|
237
257
|
exports.MdiArrowForwardCircle = mdiArrowForwardCircle.MdiArrowForwardCircle;
|
|
258
|
+
exports.MdiAws = mdiAws.MdiAws;
|
|
259
|
+
exports.MdiBacteria = mdiBacteria.MdiBacteria;
|
|
260
|
+
exports.MdiBacteriaOutline = mdiBacteriaOutline.MdiBacteriaOutline;
|
|
238
261
|
exports.MdiBank = mdiBank.MdiBank;
|
|
239
262
|
exports.MdiBankOutline = mdiBankOutline.MdiBankOutline;
|
|
263
|
+
exports.MdiBarChart = mdiBarChart.MdiBarChart;
|
|
240
264
|
exports.MdiBarCode = mdiBarCode.MdiBarCode;
|
|
265
|
+
exports.MdiBellCurve = mdiBellCurve.MdiBellCurve;
|
|
266
|
+
exports.MdiBellCurveCumulative = mdiBellCurveCumulative.MdiBellCurveCumulative;
|
|
241
267
|
exports.MdiBrain = mdiBrain.MdiBrain;
|
|
242
268
|
exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
|
|
243
269
|
exports.MdiBuilding = mdiBuilding.MdiBuilding;
|
|
244
270
|
exports.MdiCalendar = mdiCalendar.MdiCalendar;
|
|
271
|
+
exports.MdiChartBar = mdiChartBar.MdiChartBar;
|
|
272
|
+
exports.MdiChartBartStacked = mdiChartBartStacked.MdiChartBartStacked;
|
|
273
|
+
exports.MdiChartBoxOutline = mdiChartBoxOutline.MdiChartBoxOutline;
|
|
274
|
+
exports.MdiChartFinance = mdiChartFinance.MdiChartFinance;
|
|
275
|
+
exports.MdiChartGantt = mdiChartGantt.MdiChartGantt;
|
|
276
|
+
exports.MdiChartLine = mdiChartLine.MdiChartLine;
|
|
245
277
|
exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
246
278
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
247
279
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
|
248
280
|
exports.MdiChevronUp = mdiChevronUp.MdiChevronUp;
|
|
281
|
+
exports.MdiClipboardPulse = mdiClipboardPulse.MdiClipboardPulse;
|
|
282
|
+
exports.MdiClipboardPulseOutline = mdiClipboardPulseOutline.MdiClipboardPulseOutline;
|
|
249
283
|
exports.MdiClose = mdiClose.MdiClose;
|
|
250
284
|
exports.MdiCloudDownload = mdiCloudDownload.MdiCloudDownload;
|
|
251
285
|
exports.MdiCloudDownloadOutline = mdiCloudDownloadOutline.MdiCloudDownloadOutline;
|
|
@@ -281,11 +315,15 @@ exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
|
281
315
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
282
316
|
exports.MdiError = mdiError.MdiError;
|
|
283
317
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
318
|
+
exports.MdiGauge = mdiGauge.MdiGauge;
|
|
284
319
|
exports.MdiGearOutline = mdiGearOutline.MdiGearOutline;
|
|
285
320
|
exports.MdiGmail = mdiGmail.MdiGmail;
|
|
286
321
|
exports.MdiGoogle = mdiGoogle.MdiGoogle;
|
|
287
322
|
exports.MdiGoogleDrive = mdiGoogleDrive.MdiGoogleDrive;
|
|
288
323
|
exports.MdiHamburgerMenu = mdiHamburgerMenu.MdiHamburgerMenu;
|
|
324
|
+
exports.MdiHeart = mdiHeart.MdiHeart;
|
|
325
|
+
exports.MdiHeartOutline = mdiHeartOutline.MdiHeartOutline;
|
|
326
|
+
exports.MdiHeartPulse = mdiHeartPulse.MdiHeartPulse;
|
|
289
327
|
exports.MdiInformation = mdiInformation.MdiInformation;
|
|
290
328
|
exports.MdiInformationBox = mdiInformationBox.MdiInformationBox;
|
|
291
329
|
exports.MdiInformationBoxOutline = mdiInformationBoxOutline.MdiInformationBoxOutline;
|
|
@@ -318,6 +356,7 @@ exports.MdiPercent = mdiPercent.MdiPercent;
|
|
|
318
356
|
exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
|
|
319
357
|
exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
|
|
320
358
|
exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
|
|
359
|
+
exports.MdiPulse = mdiPulse.MdiPulse;
|
|
321
360
|
exports.MdiQrCode = mdiQrCode.MdiQrCode;
|
|
322
361
|
exports.MdiRefresh = mdiRefresh.MdiRefresh;
|
|
323
362
|
exports.MdiRocket = mdiRocket.MdiRocket;
|
|
@@ -328,6 +367,7 @@ exports.MdiSearch = mdiSearch.MdiSearch;
|
|
|
328
367
|
exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
329
368
|
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
|
330
369
|
exports.MdiShieldCrownOutline = mdiShieldCrownOutline.MdiShieldCrownOutline;
|
|
370
|
+
exports.MdiSpeedometer = mdiSpeedometer.MdiSpeedometer;
|
|
331
371
|
exports.MdiUser = mdiUser.MdiUser;
|
|
332
372
|
exports.MdiUserOutline = mdiUserOutline.MdiUserOutline;
|
|
333
373
|
exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -14,17 +14,31 @@ import { MdiAlertOutline } from "./components/icons/mdi-alert-outline.qwik.mjs";
|
|
|
14
14
|
import { MdiApi } from "./components/icons/mdi-api.qwik.mjs";
|
|
15
15
|
import { MdiArrowBackCircle } from "./components/icons/mdi-arrow-back-circle.qwik.mjs";
|
|
16
16
|
import { MdiArrowForwardCircle } from "./components/icons/mdi-arrow-forward-circle.qwik.mjs";
|
|
17
|
+
import { MdiAws } from "./components/icons/mdi-aws.qwik.mjs";
|
|
18
|
+
import { MdiBacteria } from "./components/icons/mdi-bacteria.qwik.mjs";
|
|
19
|
+
import { MdiBacteriaOutline } from "./components/icons/mdi-bacteria-outline.qwik.mjs";
|
|
17
20
|
import { MdiBank } from "./components/icons/mdi-bank.qwik.mjs";
|
|
18
21
|
import { MdiBankOutline } from "./components/icons/mdi-bank-outline.qwik.mjs";
|
|
22
|
+
import { MdiBarChart } from "./components/icons/mdi-bar-chart.qwik.mjs";
|
|
19
23
|
import { MdiBarCode } from "./components/icons/mdi-bar-code.qwik.mjs";
|
|
24
|
+
import { MdiBellCurve } from "./components/icons/mdi-bell-curve.qwik.mjs";
|
|
25
|
+
import { MdiBellCurveCumulative } from "./components/icons/mdi-bell-curve-cumulative.qwik.mjs";
|
|
20
26
|
import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
|
|
21
27
|
import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
|
|
22
28
|
import { MdiBuilding } from "./components/icons/mdi-building.qwik.mjs";
|
|
23
29
|
import { MdiCalendar } from "./components/icons/mdi-calendar.qwik.mjs";
|
|
30
|
+
import { MdiChartBar } from "./components/icons/mdi-chart-bar.qwik.mjs";
|
|
31
|
+
import { MdiChartBartStacked } from "./components/icons/mdi-chart-bart-stacked.qwik.mjs";
|
|
32
|
+
import { MdiChartBoxOutline } from "./components/icons/mdi-chart-box-outline.qwik.mjs";
|
|
33
|
+
import { MdiChartFinance } from "./components/icons/mdi-chart-finance.qwik.mjs";
|
|
34
|
+
import { MdiChartGantt } from "./components/icons/mdi-chart-gantt.qwik.mjs";
|
|
35
|
+
import { MdiChartLine } from "./components/icons/mdi-chart-line.qwik.mjs";
|
|
24
36
|
import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
25
37
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
26
38
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
27
39
|
import { MdiChevronUp } from "./components/icons/mdi-chevron-up.qwik.mjs";
|
|
40
|
+
import { MdiClipboardPulse } from "./components/icons/mdi-clipboard-pulse.qwik.mjs";
|
|
41
|
+
import { MdiClipboardPulseOutline } from "./components/icons/mdi-clipboard-pulse-outline.qwik.mjs";
|
|
28
42
|
import { MdiClose } from "./components/icons/mdi-close.qwik.mjs";
|
|
29
43
|
import { MdiCloudDownload } from "./components/icons/mdi-cloud-download.qwik.mjs";
|
|
30
44
|
import { MdiCloudDownloadOutline } from "./components/icons/mdi-cloud-download-outline.qwik.mjs";
|
|
@@ -60,11 +74,15 @@ import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
|
|
|
60
74
|
import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
|
|
61
75
|
import { MdiError } from "./components/icons/mdi-error.qwik.mjs";
|
|
62
76
|
import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
|
|
77
|
+
import { MdiGauge } from "./components/icons/mdi-gauge.qwik.mjs";
|
|
63
78
|
import { MdiGearOutline } from "./components/icons/mdi-gear-outline.qwik.mjs";
|
|
64
79
|
import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
65
80
|
import { MdiGoogle } from "./components/icons/mdi-google.qwik.mjs";
|
|
66
81
|
import { MdiGoogleDrive } from "./components/icons/mdi-google-drive.qwik.mjs";
|
|
67
82
|
import { MdiHamburgerMenu } from "./components/icons/mdi-hamburger-menu.qwik.mjs";
|
|
83
|
+
import { MdiHeart } from "./components/icons/mdi-heart.qwik.mjs";
|
|
84
|
+
import { MdiHeartOutline } from "./components/icons/mdi-heart-outline.qwik.mjs";
|
|
85
|
+
import { MdiHeartPulse } from "./components/icons/mdi-heart-pulse.qwik.mjs";
|
|
68
86
|
import { MdiInformation } from "./components/icons/mdi-information.qwik.mjs";
|
|
69
87
|
import { MdiInformationBox } from "./components/icons/mdi-information-box.qwik.mjs";
|
|
70
88
|
import { MdiInformationBoxOutline } from "./components/icons/mdi-information-box-outline.qwik.mjs";
|
|
@@ -97,6 +115,7 @@ import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
|
|
|
97
115
|
import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
|
|
98
116
|
import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
|
|
99
117
|
import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
|
|
118
|
+
import { MdiPulse } from "./components/icons/mdi-pulse.qwik.mjs";
|
|
100
119
|
import { MdiQrCode } from "./components/icons/mdi-qr-code.qwik.mjs";
|
|
101
120
|
import { MdiRefresh } from "./components/icons/mdi-refresh.qwik.mjs";
|
|
102
121
|
import { MdiRocket } from "./components/icons/mdi-rocket.qwik.mjs";
|
|
@@ -107,6 +126,7 @@ import { MdiSearch } from "./components/icons/mdi-search.qwik.mjs";
|
|
|
107
126
|
import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs";
|
|
108
127
|
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
109
128
|
import { MdiShieldCrownOutline } from "./components/icons/mdi-shield-crown-outline.qwik.mjs";
|
|
129
|
+
import { MdiSpeedometer } from "./components/icons/mdi-speedometer.qwik.mjs";
|
|
110
130
|
import { MdiUser } from "./components/icons/mdi-user.qwik.mjs";
|
|
111
131
|
import { MdiUserOutline } from "./components/icons/mdi-user-outline.qwik.mjs";
|
|
112
132
|
import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
|
|
@@ -287,17 +307,31 @@ export {
|
|
|
287
307
|
MdiApi,
|
|
288
308
|
MdiArrowBackCircle,
|
|
289
309
|
MdiArrowForwardCircle,
|
|
310
|
+
MdiAws,
|
|
311
|
+
MdiBacteria,
|
|
312
|
+
MdiBacteriaOutline,
|
|
290
313
|
MdiBank,
|
|
291
314
|
MdiBankOutline,
|
|
315
|
+
MdiBarChart,
|
|
292
316
|
MdiBarCode,
|
|
317
|
+
MdiBellCurve,
|
|
318
|
+
MdiBellCurveCumulative,
|
|
293
319
|
MdiBrain,
|
|
294
320
|
MdiBrainFreezeOutline,
|
|
295
321
|
MdiBuilding,
|
|
296
322
|
MdiCalendar,
|
|
323
|
+
MdiChartBar,
|
|
324
|
+
MdiChartBartStacked,
|
|
325
|
+
MdiChartBoxOutline,
|
|
326
|
+
MdiChartFinance,
|
|
327
|
+
MdiChartGantt,
|
|
328
|
+
MdiChartLine,
|
|
297
329
|
MdiCheckCircle,
|
|
298
330
|
MdiCheckCircleOutline,
|
|
299
331
|
MdiChevronDown,
|
|
300
332
|
MdiChevronUp,
|
|
333
|
+
MdiClipboardPulse,
|
|
334
|
+
MdiClipboardPulseOutline,
|
|
301
335
|
MdiClose,
|
|
302
336
|
MdiCloudDownload,
|
|
303
337
|
MdiCloudDownloadOutline,
|
|
@@ -333,11 +367,15 @@ export {
|
|
|
333
367
|
MdiEmoticonDevil,
|
|
334
368
|
MdiError,
|
|
335
369
|
MdiErrorOutline,
|
|
370
|
+
MdiGauge,
|
|
336
371
|
MdiGearOutline,
|
|
337
372
|
MdiGmail,
|
|
338
373
|
MdiGoogle,
|
|
339
374
|
MdiGoogleDrive,
|
|
340
375
|
MdiHamburgerMenu,
|
|
376
|
+
MdiHeart,
|
|
377
|
+
MdiHeartOutline,
|
|
378
|
+
MdiHeartPulse,
|
|
341
379
|
MdiInformation,
|
|
342
380
|
MdiInformationBox,
|
|
343
381
|
MdiInformationBoxOutline,
|
|
@@ -370,6 +408,7 @@ export {
|
|
|
370
408
|
MdiPersonCheck,
|
|
371
409
|
MdiPersonCheckOutline,
|
|
372
410
|
MdiPlusBoxOutline,
|
|
411
|
+
MdiPulse,
|
|
373
412
|
MdiQrCode,
|
|
374
413
|
MdiRefresh,
|
|
375
414
|
MdiRocket,
|
|
@@ -380,6 +419,7 @@ export {
|
|
|
380
419
|
MdiSecureOutline,
|
|
381
420
|
MdiShieldCrown,
|
|
382
421
|
MdiShieldCrownOutline,
|
|
422
|
+
MdiSpeedometer,
|
|
383
423
|
MdiTerminal,
|
|
384
424
|
MdiTerminalLine,
|
|
385
425
|
MdiUser,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -14,17 +14,31 @@ export * from './components/icons/mdi-alert-outline';
|
|
|
14
14
|
export * from './components/icons/mdi-api';
|
|
15
15
|
export * from './components/icons/mdi-arrow-back-circle';
|
|
16
16
|
export * from './components/icons/mdi-arrow-forward-circle';
|
|
17
|
+
export * from './components/icons/mdi-aws';
|
|
18
|
+
export * from './components/icons/mdi-bacteria';
|
|
19
|
+
export * from './components/icons/mdi-bacteria-outline';
|
|
17
20
|
export * from './components/icons/mdi-bank';
|
|
18
21
|
export * from './components/icons/mdi-bank-outline';
|
|
22
|
+
export * from './components/icons/mdi-bar-chart';
|
|
19
23
|
export * from './components/icons/mdi-bar-code';
|
|
24
|
+
export * from './components/icons/mdi-bell-curve';
|
|
25
|
+
export * from './components/icons/mdi-bell-curve-cumulative';
|
|
20
26
|
export * from './components/icons/mdi-brain';
|
|
21
27
|
export * from './components/icons/mdi-brain-freeze-outline';
|
|
22
28
|
export * from './components/icons/mdi-building';
|
|
23
29
|
export * from './components/icons/mdi-calendar';
|
|
30
|
+
export * from './components/icons/mdi-chart-bar';
|
|
31
|
+
export * from './components/icons/mdi-chart-bart-stacked';
|
|
32
|
+
export * from './components/icons/mdi-chart-box-outline';
|
|
33
|
+
export * from './components/icons/mdi-chart-finance';
|
|
34
|
+
export * from './components/icons/mdi-chart-gantt';
|
|
35
|
+
export * from './components/icons/mdi-chart-line';
|
|
24
36
|
export * from './components/icons/mdi-check-circle';
|
|
25
37
|
export * from './components/icons/mdi-check-circle-outline';
|
|
26
38
|
export * from './components/icons/mdi-chevron-down';
|
|
27
39
|
export * from './components/icons/mdi-chevron-up';
|
|
40
|
+
export * from './components/icons/mdi-clipboard-pulse';
|
|
41
|
+
export * from './components/icons/mdi-clipboard-pulse-outline';
|
|
28
42
|
export * from './components/icons/mdi-close';
|
|
29
43
|
export * from './components/icons/mdi-cloud-download';
|
|
30
44
|
export * from './components/icons/mdi-cloud-download-outline';
|
|
@@ -60,11 +74,15 @@ export * from './components/icons/mdi-email-outline';
|
|
|
60
74
|
export * from './components/icons/mdi-emoticon-devil';
|
|
61
75
|
export * from './components/icons/mdi-error';
|
|
62
76
|
export * from './components/icons/mdi-error-outline';
|
|
77
|
+
export * from './components/icons/mdi-gauge';
|
|
63
78
|
export * from './components/icons/mdi-gear-outline';
|
|
64
79
|
export * from './components/icons/mdi-gmail';
|
|
65
80
|
export * from './components/icons/mdi-google';
|
|
66
81
|
export * from './components/icons/mdi-google-drive';
|
|
67
82
|
export * from './components/icons/mdi-hamburger-menu';
|
|
83
|
+
export * from './components/icons/mdi-heart';
|
|
84
|
+
export * from './components/icons/mdi-heart-outline';
|
|
85
|
+
export * from './components/icons/mdi-heart-pulse';
|
|
68
86
|
export * from './components/icons/mdi-information';
|
|
69
87
|
export * from './components/icons/mdi-information-box';
|
|
70
88
|
export * from './components/icons/mdi-information-box-outline';
|
|
@@ -97,6 +115,7 @@ export * from './components/icons/mdi-percent';
|
|
|
97
115
|
export * from './components/icons/mdi-person-check';
|
|
98
116
|
export * from './components/icons/mdi-person-check-outline';
|
|
99
117
|
export * from './components/icons/mdi-plus-box-outline';
|
|
118
|
+
export * from './components/icons/mdi-pulse';
|
|
100
119
|
export * from './components/icons/mdi-qr-code';
|
|
101
120
|
export * from './components/icons/mdi-refresh';
|
|
102
121
|
export * from './components/icons/mdi-rocket';
|
|
@@ -107,6 +126,7 @@ export * from './components/icons/mdi-search';
|
|
|
107
126
|
export * from './components/icons/mdi-secure-outline';
|
|
108
127
|
export * from './components/icons/mdi-shield-crown';
|
|
109
128
|
export * from './components/icons/mdi-shield-crown-outline';
|
|
129
|
+
export * from './components/icons/mdi-speedometer';
|
|
110
130
|
export * from './components/icons/mdi-user';
|
|
111
131
|
export * from './components/icons/mdi-user-outline';
|
|
112
132
|
export * from './components/icons/mdi-users-outline';
|