@nr1e/qwik-icons 0.0.32 → 0.0.34

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.
Files changed (34) hide show
  1. package/lib/components/icons/mdi-database-outline.qwik.cjs +16 -0
  2. package/lib/components/icons/mdi-database-outline.qwik.mjs +16 -0
  3. package/lib/components/icons/mdi-database-search-outline.qwik.cjs +16 -0
  4. package/lib/components/icons/mdi-database-search-outline.qwik.mjs +16 -0
  5. package/lib/components/icons/mdi-database-search.qwik.cjs +16 -0
  6. package/lib/components/icons/mdi-database-search.qwik.mjs +16 -0
  7. package/lib/components/icons/mdi-database-view-outline.qwik.cjs +16 -0
  8. package/lib/components/icons/mdi-database-view-outline.qwik.mjs +16 -0
  9. package/lib/components/icons/mdi-database-view.qwik.cjs +16 -0
  10. package/lib/components/icons/mdi-database-view.qwik.mjs +16 -0
  11. package/lib/components/icons/mdi-database.qwik.cjs +16 -0
  12. package/lib/components/icons/mdi-database.qwik.mjs +16 -0
  13. package/lib/components/icons/mdi-pageview-outline.qwik.cjs +16 -0
  14. package/lib/components/icons/mdi-pageview-outline.qwik.mjs +16 -0
  15. package/lib/components/icons/mdi-pageview.qwik.cjs +16 -0
  16. package/lib/components/icons/mdi-pageview.qwik.mjs +16 -0
  17. package/lib/components/icons/mdi-print-view.qwik.cjs +16 -0
  18. package/lib/components/icons/mdi-print-view.qwik.mjs +16 -0
  19. package/lib/components/icons/spinners-bars-fade.qwik.cjs +77 -0
  20. package/lib/components/icons/spinners-bars-fade.qwik.mjs +77 -0
  21. package/lib/index.qwik.cjs +20 -0
  22. package/lib/index.qwik.mjs +20 -0
  23. package/lib-types/components/icons/mdi-database-outline.d.ts +2 -0
  24. package/lib-types/components/icons/mdi-database-search-outline.d.ts +2 -0
  25. package/lib-types/components/icons/mdi-database-search.d.ts +2 -0
  26. package/lib-types/components/icons/mdi-database-view-outline.d.ts +2 -0
  27. package/lib-types/components/icons/mdi-database-view.d.ts +2 -0
  28. package/lib-types/components/icons/mdi-database.d.ts +2 -0
  29. package/lib-types/components/icons/mdi-pageview-outline.d.ts +2 -0
  30. package/lib-types/components/icons/mdi-pageview.d.ts +2 -0
  31. package/lib-types/components/icons/mdi-print-view.d.ts +2 -0
  32. package/lib-types/components/icons/spinners-bars-fade.d.ts +2 -0
  33. package/lib-types/index.d.ts +10 -0
  34. package/package.json +3 -3
@@ -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 MdiDatabaseOutline = 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 3C7.58 3 4 4.79 4 7v10c0 2.21 3.59 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4m6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23zm0-4.55c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2s6 1.5 6 2s-2.13 2-6 2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabaseOutline = MdiDatabaseOutline;
@@ -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 MdiDatabaseOutline = 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 3C7.58 3 4 4.79 4 7v10c0 2.21 3.59 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4m6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23zm0-4.55c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2s6 1.5 6 2s-2.13 2-6 2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabaseOutline
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 MdiDatabaseSearchOutline = 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: "M11 18.95c-3.23-.23-5-1.5-5-1.95v-2.23c1.13.55 2.5.92 4 1.1c0-.66.04-1.33.21-1.98c-1.71-.22-3.24-.73-4.21-1.44V9.64c1.43.81 3.5 1.33 5.82 1.36c.03-.03.05-.07.08-.1c2.2-2.19 5.6-2.49 8.1-.87V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4c.34 0 .68 0 1-.03c-.38-.25-.76-.53-1.1-.87c-.35-.36-.65-.74-.9-1.15M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2s-6-1.5-6-2s2.13-2 6-2m8.31 12.9c.44-.69.69-1.52.69-2.4c0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39L23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabaseSearchOutline = MdiDatabaseSearchOutline;
@@ -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 MdiDatabaseSearchOutline = 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: "M11 18.95c-3.23-.23-5-1.5-5-1.95v-2.23c1.13.55 2.5.92 4 1.1c0-.66.04-1.33.21-1.98c-1.71-.22-3.24-.73-4.21-1.44V9.64c1.43.81 3.5 1.33 5.82 1.36c.03-.03.05-.07.08-.1c2.2-2.19 5.6-2.49 8.1-.87V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4c.34 0 .68 0 1-.03c-.38-.25-.76-.53-1.1-.87c-.35-.36-.65-.74-.9-1.15M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2s-6-1.5-6-2s2.13-2 6-2m8.31 12.9c.44-.69.69-1.52.69-2.4c0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39L23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabaseSearchOutline
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 MdiDatabaseSearch = 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: "M18.68 12.32a4.49 4.49 0 0 0-6.36.01a4.49 4.49 0 0 0 0 6.36a4.51 4.51 0 0 0 5.57.63L21 22.39L22.39 21l-3.09-3.11c1.13-1.77.87-4.09-.62-5.57m-1.41 4.95c-.98.98-2.56.97-3.54 0c-.97-.98-.97-2.56.01-3.54c.97-.97 2.55-.97 3.53 0c.97.98.97 2.56 0 3.54M10.9 20.1a6.5 6.5 0 0 1-1.48-2.32C6.27 17.25 4 15.76 4 14v3c0 2.21 3.58 4 8 4c-.4-.26-.77-.56-1.1-.9M4 9v3c0 1.68 2.07 3.12 5 3.7v-.2c0-.93.2-1.85.58-2.69C6.34 12.3 4 10.79 4 9m8-6C7.58 3 4 4.79 4 7c0 2 3 3.68 6.85 4h.05c1.2-1.26 2.86-2 4.6-2c.91 0 1.81.19 2.64.56A3.22 3.22 0 0 0 20 7c0-2.21-3.58-4-8-4"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabaseSearch = MdiDatabaseSearch;
@@ -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 MdiDatabaseSearch = 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: "M18.68 12.32a4.49 4.49 0 0 0-6.36.01a4.49 4.49 0 0 0 0 6.36a4.51 4.51 0 0 0 5.57.63L21 22.39L22.39 21l-3.09-3.11c1.13-1.77.87-4.09-.62-5.57m-1.41 4.95c-.98.98-2.56.97-3.54 0c-.97-.98-.97-2.56.01-3.54c.97-.97 2.55-.97 3.53 0c.97.98.97 2.56 0 3.54M10.9 20.1a6.5 6.5 0 0 1-1.48-2.32C6.27 17.25 4 15.76 4 14v3c0 2.21 3.58 4 8 4c-.4-.26-.77-.56-1.1-.9M4 9v3c0 1.68 2.07 3.12 5 3.7v-.2c0-.93.2-1.85.58-2.69C6.34 12.3 4 10.79 4 9m8-6C7.58 3 4 4.79 4 7c0 2 3 3.68 6.85 4h.05c1.2-1.26 2.86-2 4.6-2c.91 0 1.81.19 2.64.56A3.22 3.22 0 0 0 20 7c0-2.21-3.58-4-8-4"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabaseSearch
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 MdiDatabaseViewOutline = 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.1 19.7l-.3-.7l.2-.4c-1.9-.5-3-1.3-3-1.6v-2.2c1.3.6 2.8 1 4.6 1.2c.7-.8 1.6-1.5 2.5-2H12c-2.4 0-4.7-.6-6-1.5V9.6c1.5.8 3.6 1.4 6 1.4s4.5-.5 6-1.4v2.8c-.3.2-.6.4-1 .6q1.5 0 3 .6V7c0-2.2-3.6-4-8-4S4 4.8 4 7v10c0 1.8 2.4 3.3 5.7 3.8c-.2-.3-.4-.7-.6-1.1M12 5c3.9 0 6 1.5 6 2s-2.1 2-6 2s-6-1.5-6-2s2.1-2 6-2m5 13c.6 0 1 .4 1 1s-.4 1-1 1s-1-.4-1-1s.4-1 1-1m0-3c-2.7 0-5.1 1.7-6 4c.9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabaseViewOutline = MdiDatabaseViewOutline;
@@ -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 MdiDatabaseViewOutline = 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.1 19.7l-.3-.7l.2-.4c-1.9-.5-3-1.3-3-1.6v-2.2c1.3.6 2.8 1 4.6 1.2c.7-.8 1.6-1.5 2.5-2H12c-2.4 0-4.7-.6-6-1.5V9.6c1.5.8 3.6 1.4 6 1.4s4.5-.5 6-1.4v2.8c-.3.2-.6.4-1 .6q1.5 0 3 .6V7c0-2.2-3.6-4-8-4S4 4.8 4 7v10c0 1.8 2.4 3.3 5.7 3.8c-.2-.3-.4-.7-.6-1.1M12 5c3.9 0 6 1.5 6 2s-2.1 2-6 2s-6-1.5-6-2s2.1-2 6-2m5 13c.6 0 1 .4 1 1s-.4 1-1 1s-1-.4-1-1s.4-1 1-1m0-3c-2.7 0-5.1 1.7-6 4c.9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabaseViewOutline
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 MdiDatabaseView = 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 12V9c0 2.2 3.6 4 8 4s8-1.8 8-4v3c0 .5-.2.9-.5 1.4c-.8-.3-1.6-.4-2.5-.4c-2.5 0-4.9 1.1-6.4 2.9C6.8 15.6 4 14 4 12m8-1c4.4 0 8-1.8 8-4s-3.6-4-8-4s-8 1.8-8 4s3.6 4 8 4m-2.9 8.7l-.3-.7l.3-.7c.1-.2.2-.3.2-.5c-3.1-.6-5.3-2-5.3-3.8v3c0 1.8 2.4 3.3 5.7 3.8c-.2-.3-.4-.7-.6-1.1M17 18c-.6 0-1 .4-1 1s.4 1 1 1s1-.4 1-1s-.4-1-1-1m6 1c-.9 2.3-3.3 4-6 4s-5.1-1.7-6-4c.9-2.3 3.3-4 6-4s5.1 1.7 6 4m-3.5 0c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabaseView = MdiDatabaseView;
@@ -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 MdiDatabaseView = 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 12V9c0 2.2 3.6 4 8 4s8-1.8 8-4v3c0 .5-.2.9-.5 1.4c-.8-.3-1.6-.4-2.5-.4c-2.5 0-4.9 1.1-6.4 2.9C6.8 15.6 4 14 4 12m8-1c4.4 0 8-1.8 8-4s-3.6-4-8-4s-8 1.8-8 4s3.6 4 8 4m-2.9 8.7l-.3-.7l.3-.7c.1-.2.2-.3.2-.5c-3.1-.6-5.3-2-5.3-3.8v3c0 1.8 2.4 3.3 5.7 3.8c-.2-.3-.4-.7-.6-1.1M17 18c-.6 0-1 .4-1 1s.4 1 1 1s1-.4 1-1s-.4-1-1-1m6 1c-.9 2.3-3.3 4-6 4s-5.1-1.7-6-4c.9-2.3 3.3-4 6-4s5.1 1.7 6 4m-3.5 0c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabaseView
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 MdiDatabase = 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 3C7.58 3 4 4.79 4 7s3.58 4 8 4s8-1.79 8-4s-3.58-4-8-4M4 9v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4s-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4s-8-1.79-8-4"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDatabase = MdiDatabase;
@@ -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 MdiDatabase = 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 3C7.58 3 4 4.79 4 7s3.58 4 8 4s8-1.79 8-4s-3.58-4-8-4M4 9v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4s-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4s-8-1.79-8-4"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDatabase
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 MdiPageviewOutline = 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: "M11.5 16c.87 0 1.69-.26 2.38-.7l2.44 2.44l1.42-1.42l-2.44-2.43A4.481 4.481 0 0 0 11.5 7C9 7 7 9 7 11.5S9 16 11.5 16m0-7a2.5 2.5 0 0 1 0 5a2.5 2.5 0 0 1 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiPageviewOutline = MdiPageviewOutline;
@@ -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 MdiPageviewOutline = 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: "M11.5 16c.87 0 1.69-.26 2.38-.7l2.44 2.44l1.42-1.42l-2.44-2.43A4.481 4.481 0 0 0 11.5 7C9 7 7 9 7 11.5S9 16 11.5 16m0-7a2.5 2.5 0 0 1 0 5a2.5 2.5 0 0 1 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiPageviewOutline
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 MdiPageview = 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: "M11.5 9a2.5 2.5 0 0 0 0 5a2.5 2.5 0 0 0 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.38.7C9 16 7 14 7 11.5S9 7 11.5 7a4.481 4.481 0 0 1 3.8 6.89l2.91 2.9z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiPageview = MdiPageview;
@@ -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 MdiPageview = 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: "M11.5 9a2.5 2.5 0 0 0 0 5a2.5 2.5 0 0 0 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.38.7C9 16 7 14 7 11.5S9 7 11.5 7a4.481 4.481 0 0 1 3.8 6.89l2.91 2.9z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiPageview
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 MdiPrintView = 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 13a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3a3 3 0 0 0-3 3m11 6.59V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.76.83-2.76.83a5 5 0 0 1-5-5a5 5 0 0 1 5-5a5 5 0 0 1 5 5c0 1-.31 1.96-.83 2.75z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiPrintView = MdiPrintView;
@@ -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 MdiPrintView = 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 13a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3a3 3 0 0 0-3 3m11 6.59V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.76.83-2.76.83a5 5 0 0 1-5-5a5 5 0 0 1 5-5a5 5 0 0 1 5 5c0 1-.31 1.96-.83 2.75z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiPrintView
16
+ };
@@ -0,0 +1,77 @@
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 SpinnersBarsFade = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 24 24",
10
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
11
+ children: [
12
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
13
+ width: "2",
14
+ height: "5",
15
+ x: "11",
16
+ y: "1",
17
+ fill: "currentColor",
18
+ opacity: "0.14"
19
+ }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
21
+ width: "2",
22
+ height: "5",
23
+ x: "11",
24
+ y: "1",
25
+ fill: "currentColor",
26
+ opacity: "0.29",
27
+ transform: "rotate(30 12 12)"
28
+ }),
29
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
30
+ width: "2",
31
+ height: "5",
32
+ x: "11",
33
+ y: "1",
34
+ fill: "currentColor",
35
+ opacity: "0.43",
36
+ transform: "rotate(60 12 12)"
37
+ }),
38
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
39
+ width: "2",
40
+ height: "5",
41
+ x: "11",
42
+ y: "1",
43
+ fill: "currentColor",
44
+ opacity: "0.57",
45
+ transform: "rotate(90 12 12)"
46
+ }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
48
+ width: "2",
49
+ height: "5",
50
+ x: "11",
51
+ y: "1",
52
+ fill: "currentColor",
53
+ opacity: "0.71",
54
+ transform: "rotate(120 12 12)"
55
+ }),
56
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
57
+ width: "2",
58
+ height: "5",
59
+ x: "11",
60
+ y: "1",
61
+ fill: "currentColor",
62
+ opacity: "0.86",
63
+ transform: "rotate(150 12 12)"
64
+ }),
65
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
66
+ width: "2",
67
+ height: "5",
68
+ x: "11",
69
+ y: "1",
70
+ fill: "currentColor",
71
+ transform: "rotate(180 12 12)"
72
+ })
73
+ ]
74
+ })
75
+ });
76
+ });
77
+ exports.SpinnersBarsFade = SpinnersBarsFade;
@@ -0,0 +1,77 @@
1
+ import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const SpinnersBarsFade = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 24 24",
8
+ children: /* @__PURE__ */ jsxs("g", {
9
+ children: [
10
+ /* @__PURE__ */ jsx("rect", {
11
+ width: "2",
12
+ height: "5",
13
+ x: "11",
14
+ y: "1",
15
+ fill: "currentColor",
16
+ opacity: "0.14"
17
+ }),
18
+ /* @__PURE__ */ jsx("rect", {
19
+ width: "2",
20
+ height: "5",
21
+ x: "11",
22
+ y: "1",
23
+ fill: "currentColor",
24
+ opacity: "0.29",
25
+ transform: "rotate(30 12 12)"
26
+ }),
27
+ /* @__PURE__ */ jsx("rect", {
28
+ width: "2",
29
+ height: "5",
30
+ x: "11",
31
+ y: "1",
32
+ fill: "currentColor",
33
+ opacity: "0.43",
34
+ transform: "rotate(60 12 12)"
35
+ }),
36
+ /* @__PURE__ */ jsx("rect", {
37
+ width: "2",
38
+ height: "5",
39
+ x: "11",
40
+ y: "1",
41
+ fill: "currentColor",
42
+ opacity: "0.57",
43
+ transform: "rotate(90 12 12)"
44
+ }),
45
+ /* @__PURE__ */ jsx("rect", {
46
+ width: "2",
47
+ height: "5",
48
+ x: "11",
49
+ y: "1",
50
+ fill: "currentColor",
51
+ opacity: "0.71",
52
+ transform: "rotate(120 12 12)"
53
+ }),
54
+ /* @__PURE__ */ jsx("rect", {
55
+ width: "2",
56
+ height: "5",
57
+ x: "11",
58
+ y: "1",
59
+ fill: "currentColor",
60
+ opacity: "0.86",
61
+ transform: "rotate(150 12 12)"
62
+ }),
63
+ /* @__PURE__ */ jsx("rect", {
64
+ width: "2",
65
+ height: "5",
66
+ x: "11",
67
+ y: "1",
68
+ fill: "currentColor",
69
+ transform: "rotate(180 12 12)"
70
+ })
71
+ ]
72
+ })
73
+ });
74
+ });
75
+ export {
76
+ SpinnersBarsFade
77
+ };
@@ -80,8 +80,14 @@ const mdiCrownCircle = require("./components/icons/mdi-crown-circle.qwik.cjs");
80
80
  const mdiCrownCircleOutline = require("./components/icons/mdi-crown-circle-outline.qwik.cjs");
81
81
  const mdiCrownOutline = require("./components/icons/mdi-crown-outline.qwik.cjs");
82
82
  const mdiDangerous = require("./components/icons/mdi-dangerous.qwik.cjs");
83
+ const mdiDatabase = require("./components/icons/mdi-database.qwik.cjs");
84
+ const mdiDatabaseOutline = require("./components/icons/mdi-database-outline.qwik.cjs");
85
+ const mdiDatabaseSearch = require("./components/icons/mdi-database-search.qwik.cjs");
86
+ const mdiDatabaseSearchOutline = require("./components/icons/mdi-database-search-outline.qwik.cjs");
83
87
  const mdiDatabaseSync = require("./components/icons/mdi-database-sync.qwik.cjs");
84
88
  const mdiDatabaseSyncOutline = require("./components/icons/mdi-database-sync-outline.qwik.cjs");
89
+ const mdiDatabaseView = require("./components/icons/mdi-database-view.qwik.cjs");
90
+ const mdiDatabaseViewOutline = require("./components/icons/mdi-database-view-outline.qwik.cjs");
85
91
  const mdiDeleteOutline = require("./components/icons/mdi-delete-outline.qwik.cjs");
86
92
  const mdiDevTo = require("./components/icons/mdi-dev-to.qwik.cjs");
87
93
  const mdiDollar = require("./components/icons/mdi-dollar.qwik.cjs");
@@ -159,6 +165,8 @@ const mdiNavigateBefore = require("./components/icons/mdi-navigate-before.qwik.c
159
165
  const mdiNavigateNext = require("./components/icons/mdi-navigate-next.qwik.cjs");
160
166
  const mdiNetworkOutline = require("./components/icons/mdi-network-outline.qwik.cjs");
161
167
  const mdiOfficeBuildingOutline = require("./components/icons/mdi-office-building-outline.qwik.cjs");
168
+ const mdiPageview = require("./components/icons/mdi-pageview.qwik.cjs");
169
+ const mdiPageviewOutline = require("./components/icons/mdi-pageview-outline.qwik.cjs");
162
170
  const mdiPencil = require("./components/icons/mdi-pencil.qwik.cjs");
163
171
  const mdiPencilBoxOutline = require("./components/icons/mdi-pencil-box-outline.qwik.cjs");
164
172
  const mdiPencilCircle = require("./components/icons/mdi-pencil-circle.qwik.cjs");
@@ -174,6 +182,7 @@ const mdiPhoneOutline = require("./components/icons/mdi-phone-outline.qwik.cjs")
174
182
  const mdiCellPhone = require("./components/icons/mdi-cell-phone.qwik.cjs");
175
183
  const mdiPipeDisconnected = require("./components/icons/mdi-pipe-disconnected.qwik.cjs");
176
184
  const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
185
+ const mdiPrintView = require("./components/icons/mdi-print-view.qwik.cjs");
177
186
  const mdiPulse = require("./components/icons/mdi-pulse.qwik.cjs");
178
187
  const mdiPushNotification = require("./components/icons/mdi-push-notification.qwik.cjs");
179
188
  const mdiPushNotificationOutline = require("./components/icons/mdi-push-notification-outline.qwik.cjs");
@@ -207,6 +216,7 @@ const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs
207
216
  const mdiTerminal = require("./components/icons/mdi-terminal.qwik.cjs");
208
217
  const mdiTerminalLine = require("./components/icons/mdi-terminal-line.qwik.cjs");
209
218
  const spinners6DotsRotate = require("./components/icons/spinners-6-dots-rotate.qwik.cjs");
219
+ const spinnersBarsFade = require("./components/icons/spinners-bars-fade.qwik.cjs");
210
220
  const spinnersBarsRotateFade = require("./components/icons/spinners-bars-rotate-fade.qwik.cjs");
211
221
  const spinnersRingResize = require("./components/icons/spinners-ring-resize.qwik.cjs");
212
222
  const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
@@ -385,8 +395,14 @@ exports.MdiCrownCircle = mdiCrownCircle.MdiCrownCircle;
385
395
  exports.MdiCrownCircleOutline = mdiCrownCircleOutline.MdiCrownCircleOutline;
386
396
  exports.MdiCrownOutline = mdiCrownOutline.MdiCrownOutline;
387
397
  exports.MdiDangerous = mdiDangerous.MdiDangerous;
398
+ exports.MdiDatabase = mdiDatabase.MdiDatabase;
399
+ exports.MdiDatabaseOutline = mdiDatabaseOutline.MdiDatabaseOutline;
400
+ exports.MdiDatabaseSearch = mdiDatabaseSearch.MdiDatabaseSearch;
401
+ exports.MdiDatabaseSearchOutline = mdiDatabaseSearchOutline.MdiDatabaseSearchOutline;
388
402
  exports.MdiDatabaseSync = mdiDatabaseSync.MdiDatabaseSync;
389
403
  exports.MdiDatabaseSyncOutline = mdiDatabaseSyncOutline.MdiDatabaseSyncOutline;
404
+ exports.MdiDatabaseView = mdiDatabaseView.MdiDatabaseView;
405
+ exports.MdiDatabaseViewOutline = mdiDatabaseViewOutline.MdiDatabaseViewOutline;
390
406
  exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
391
407
  exports.MdiDevTo = mdiDevTo.MdiDevTo;
392
408
  exports.MdiDollar = mdiDollar.MdiDollar;
@@ -464,6 +480,8 @@ exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
464
480
  exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
465
481
  exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
466
482
  exports.MdiOfficeBuildingOutline = mdiOfficeBuildingOutline.MdiOfficeBuildingOutline;
483
+ exports.MdiPageview = mdiPageview.MdiPageview;
484
+ exports.MdiPageviewOutline = mdiPageviewOutline.MdiPageviewOutline;
467
485
  exports.MdiPencil = mdiPencil.MdiPencil;
468
486
  exports.MdiPencilBoxOutline = mdiPencilBoxOutline.MdiPencilBoxOutline;
469
487
  exports.MdiPencilCircle = mdiPencilCircle.MdiPencilCircle;
@@ -479,6 +497,7 @@ exports.MdiPhoneOutline = mdiPhoneOutline.MdiPhoneOutline;
479
497
  exports.MdiCellPhone = mdiCellPhone.MdiCellPhone;
480
498
  exports.MdiPipeDisconnected = mdiPipeDisconnected.MdiPipeDisconnected;
481
499
  exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
500
+ exports.MdiPrintView = mdiPrintView.MdiPrintView;
482
501
  exports.MdiPulse = mdiPulse.MdiPulse;
483
502
  exports.MdiPushNotification = mdiPushNotification.MdiPushNotification;
484
503
  exports.MdiPushNotificationOutline = mdiPushNotificationOutline.MdiPushNotificationOutline;
@@ -512,6 +531,7 @@ exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
512
531
  exports.MdiTerminal = mdiTerminal.MdiTerminal;
513
532
  exports.MdiTerminalLine = mdiTerminalLine.MdiTerminalLine;
514
533
  exports.Spinners6DotsRotate = spinners6DotsRotate.Spinners6DotsRotate;
534
+ exports.SpinnersBarsFade = spinnersBarsFade.SpinnersBarsFade;
515
535
  exports.SpinnersBarsRotateFade = spinnersBarsRotateFade.SpinnersBarsRotateFade;
516
536
  exports.SpinnersRingResize = spinnersRingResize.SpinnersRingResize;
517
537
  exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
@@ -78,8 +78,14 @@ import { MdiCrownCircle } from "./components/icons/mdi-crown-circle.qwik.mjs";
78
78
  import { MdiCrownCircleOutline } from "./components/icons/mdi-crown-circle-outline.qwik.mjs";
79
79
  import { MdiCrownOutline } from "./components/icons/mdi-crown-outline.qwik.mjs";
80
80
  import { MdiDangerous } from "./components/icons/mdi-dangerous.qwik.mjs";
81
+ import { MdiDatabase } from "./components/icons/mdi-database.qwik.mjs";
82
+ import { MdiDatabaseOutline } from "./components/icons/mdi-database-outline.qwik.mjs";
83
+ import { MdiDatabaseSearch } from "./components/icons/mdi-database-search.qwik.mjs";
84
+ import { MdiDatabaseSearchOutline } from "./components/icons/mdi-database-search-outline.qwik.mjs";
81
85
  import { MdiDatabaseSync } from "./components/icons/mdi-database-sync.qwik.mjs";
82
86
  import { MdiDatabaseSyncOutline } from "./components/icons/mdi-database-sync-outline.qwik.mjs";
87
+ import { MdiDatabaseView } from "./components/icons/mdi-database-view.qwik.mjs";
88
+ import { MdiDatabaseViewOutline } from "./components/icons/mdi-database-view-outline.qwik.mjs";
83
89
  import { MdiDeleteOutline } from "./components/icons/mdi-delete-outline.qwik.mjs";
84
90
  import { MdiDevTo } from "./components/icons/mdi-dev-to.qwik.mjs";
85
91
  import { MdiDollar } from "./components/icons/mdi-dollar.qwik.mjs";
@@ -157,6 +163,8 @@ import { MdiNavigateBefore } from "./components/icons/mdi-navigate-before.qwik.m
157
163
  import { MdiNavigateNext } from "./components/icons/mdi-navigate-next.qwik.mjs";
158
164
  import { MdiNetworkOutline } from "./components/icons/mdi-network-outline.qwik.mjs";
159
165
  import { MdiOfficeBuildingOutline } from "./components/icons/mdi-office-building-outline.qwik.mjs";
166
+ import { MdiPageview } from "./components/icons/mdi-pageview.qwik.mjs";
167
+ import { MdiPageviewOutline } from "./components/icons/mdi-pageview-outline.qwik.mjs";
160
168
  import { MdiPencil } from "./components/icons/mdi-pencil.qwik.mjs";
161
169
  import { MdiPencilBoxOutline } from "./components/icons/mdi-pencil-box-outline.qwik.mjs";
162
170
  import { MdiPencilCircle } from "./components/icons/mdi-pencil-circle.qwik.mjs";
@@ -172,6 +180,7 @@ import { MdiPhoneOutline } from "./components/icons/mdi-phone-outline.qwik.mjs";
172
180
  import { MdiCellPhone } from "./components/icons/mdi-cell-phone.qwik.mjs";
173
181
  import { MdiPipeDisconnected } from "./components/icons/mdi-pipe-disconnected.qwik.mjs";
174
182
  import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
183
+ import { MdiPrintView } from "./components/icons/mdi-print-view.qwik.mjs";
175
184
  import { MdiPulse } from "./components/icons/mdi-pulse.qwik.mjs";
176
185
  import { MdiPushNotification } from "./components/icons/mdi-push-notification.qwik.mjs";
177
186
  import { MdiPushNotificationOutline } from "./components/icons/mdi-push-notification-outline.qwik.mjs";
@@ -205,6 +214,7 @@ import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs
205
214
  import { MdiTerminal } from "./components/icons/mdi-terminal.qwik.mjs";
206
215
  import { MdiTerminalLine } from "./components/icons/mdi-terminal-line.qwik.mjs";
207
216
  import { Spinners6DotsRotate } from "./components/icons/spinners-6-dots-rotate.qwik.mjs";
217
+ import { SpinnersBarsFade } from "./components/icons/spinners-bars-fade.qwik.mjs";
208
218
  import { SpinnersBarsRotateFade } from "./components/icons/spinners-bars-rotate-fade.qwik.mjs";
209
219
  import { SpinnersRingResize } from "./components/icons/spinners-ring-resize.qwik.mjs";
210
220
  import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
@@ -438,8 +448,14 @@ export {
438
448
  MdiCrownCircleOutline,
439
449
  MdiCrownOutline,
440
450
  MdiDangerous,
451
+ MdiDatabase,
452
+ MdiDatabaseOutline,
453
+ MdiDatabaseSearch,
454
+ MdiDatabaseSearchOutline,
441
455
  MdiDatabaseSync,
442
456
  MdiDatabaseSyncOutline,
457
+ MdiDatabaseView,
458
+ MdiDatabaseViewOutline,
443
459
  MdiDeleteOutline,
444
460
  MdiDevTo,
445
461
  MdiDollar,
@@ -517,6 +533,8 @@ export {
517
533
  MdiNavigateNext,
518
534
  MdiNetworkOutline,
519
535
  MdiOfficeBuildingOutline,
536
+ MdiPageview,
537
+ MdiPageviewOutline,
520
538
  MdiPencil,
521
539
  MdiPencilBoxOutline,
522
540
  MdiPencilCircle,
@@ -531,6 +549,7 @@ export {
531
549
  MdiPhoneOutline,
532
550
  MdiPipeDisconnected,
533
551
  MdiPlusBoxOutline,
552
+ MdiPrintView,
534
553
  MdiPulse,
535
554
  MdiPushNotification,
536
555
  MdiPushNotificationOutline,
@@ -579,6 +598,7 @@ export {
579
598
  ReverblyLogoTaglineDarkBg,
580
599
  ReverblyLogoTaglineLightBg,
581
600
  Spinners6DotsRotate,
601
+ SpinnersBarsFade,
582
602
  SpinnersBarsRotateFade,
583
603
  SpinnersRingResize,
584
604
  Svg,
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabaseOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabaseSearchOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabaseSearch: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabaseViewOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabaseView: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDatabase: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiPageviewOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiPageview: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiPrintView: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const SpinnersBarsFade: import("@builder.io/qwik").Component<IconProps>;
@@ -78,8 +78,14 @@ export * from './components/icons/mdi-crown-circle';
78
78
  export * from './components/icons/mdi-crown-circle-outline';
79
79
  export * from './components/icons/mdi-crown-outline';
80
80
  export * from './components/icons/mdi-dangerous';
81
+ export * from './components/icons/mdi-database';
82
+ export * from './components/icons/mdi-database-outline';
83
+ export * from './components/icons/mdi-database-search';
84
+ export * from './components/icons/mdi-database-search-outline';
81
85
  export * from './components/icons/mdi-database-sync';
82
86
  export * from './components/icons/mdi-database-sync-outline';
87
+ export * from './components/icons/mdi-database-view';
88
+ export * from './components/icons/mdi-database-view-outline';
83
89
  export * from './components/icons/mdi-delete-outline';
84
90
  export * from './components/icons/mdi-dev-to';
85
91
  export * from './components/icons/mdi-dollar';
@@ -157,6 +163,8 @@ export * from './components/icons/mdi-navigate-before';
157
163
  export * from './components/icons/mdi-navigate-next';
158
164
  export * from './components/icons/mdi-network-outline';
159
165
  export * from './components/icons/mdi-office-building-outline';
166
+ export * from './components/icons/mdi-pageview';
167
+ export * from './components/icons/mdi-pageview-outline';
160
168
  export * from './components/icons/mdi-pencil';
161
169
  export * from './components/icons/mdi-pencil-box-outline';
162
170
  export * from './components/icons/mdi-pencil-circle';
@@ -172,6 +180,7 @@ export * from './components/icons/mdi-phone-outline';
172
180
  export * from './components/icons/mdi-cell-phone';
173
181
  export * from './components/icons/mdi-pipe-disconnected';
174
182
  export * from './components/icons/mdi-plus-box-outline';
183
+ export * from './components/icons/mdi-print-view';
175
184
  export * from './components/icons/mdi-pulse';
176
185
  export * from './components/icons/mdi-push-notification';
177
186
  export * from './components/icons/mdi-push-notification-outline';
@@ -205,6 +214,7 @@ export * from './components/icons/mdi-wrench-outline';
205
214
  export * from './components/icons/mdi-terminal';
206
215
  export * from './components/icons/mdi-terminal-line';
207
216
  export * from './components/icons/spinners-6-dots-rotate';
217
+ export * from './components/icons/spinners-bars-fade';
208
218
  export * from './components/icons/spinners-bars-rotate-fade';
209
219
  export * from './components/icons/spinners-ring-resize';
210
220
  export * from './components/icons/logos-google-icon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-icons",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "description": "NR1E Qwik Icons Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {
@@ -32,7 +32,7 @@
32
32
  "sideEffects": false,
33
33
  "type": "module",
34
34
  "devDependencies": {
35
- "@builder.io/qwik": "1.19.1",
35
+ "@builder.io/qwik": "1.19.2",
36
36
  "@eslint/js": "^9.39.4",
37
37
  "@types/node": "^24.10.13",
38
38
  "eslint": "9.39.4",
@@ -41,7 +41,7 @@
41
41
  "np": "^11.0.2",
42
42
  "prettier": "3.8.1",
43
43
  "typescript": "5.9.3",
44
- "typescript-eslint": "8.57.0",
44
+ "typescript-eslint": "8.57.1",
45
45
  "undici": "*",
46
46
  "vite": "7.3.1",
47
47
  "vite-tsconfig-paths": "^6.1.1",