@nr1e/qwik-icons 0.0.33 → 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 (31) 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/index.qwik.cjs +18 -0
  20. package/lib/index.qwik.mjs +18 -0
  21. package/lib-types/components/icons/mdi-database-outline.d.ts +2 -0
  22. package/lib-types/components/icons/mdi-database-search-outline.d.ts +2 -0
  23. package/lib-types/components/icons/mdi-database-search.d.ts +2 -0
  24. package/lib-types/components/icons/mdi-database-view-outline.d.ts +2 -0
  25. package/lib-types/components/icons/mdi-database-view.d.ts +2 -0
  26. package/lib-types/components/icons/mdi-database.d.ts +2 -0
  27. package/lib-types/components/icons/mdi-pageview-outline.d.ts +2 -0
  28. package/lib-types/components/icons/mdi-pageview.d.ts +2 -0
  29. package/lib-types/components/icons/mdi-print-view.d.ts +2 -0
  30. package/lib-types/index.d.ts +9 -0
  31. 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
+ };
@@ -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");
@@ -386,8 +395,14 @@ exports.MdiCrownCircle = mdiCrownCircle.MdiCrownCircle;
386
395
  exports.MdiCrownCircleOutline = mdiCrownCircleOutline.MdiCrownCircleOutline;
387
396
  exports.MdiCrownOutline = mdiCrownOutline.MdiCrownOutline;
388
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;
389
402
  exports.MdiDatabaseSync = mdiDatabaseSync.MdiDatabaseSync;
390
403
  exports.MdiDatabaseSyncOutline = mdiDatabaseSyncOutline.MdiDatabaseSyncOutline;
404
+ exports.MdiDatabaseView = mdiDatabaseView.MdiDatabaseView;
405
+ exports.MdiDatabaseViewOutline = mdiDatabaseViewOutline.MdiDatabaseViewOutline;
391
406
  exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
392
407
  exports.MdiDevTo = mdiDevTo.MdiDevTo;
393
408
  exports.MdiDollar = mdiDollar.MdiDollar;
@@ -465,6 +480,8 @@ exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
465
480
  exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
466
481
  exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
467
482
  exports.MdiOfficeBuildingOutline = mdiOfficeBuildingOutline.MdiOfficeBuildingOutline;
483
+ exports.MdiPageview = mdiPageview.MdiPageview;
484
+ exports.MdiPageviewOutline = mdiPageviewOutline.MdiPageviewOutline;
468
485
  exports.MdiPencil = mdiPencil.MdiPencil;
469
486
  exports.MdiPencilBoxOutline = mdiPencilBoxOutline.MdiPencilBoxOutline;
470
487
  exports.MdiPencilCircle = mdiPencilCircle.MdiPencilCircle;
@@ -480,6 +497,7 @@ exports.MdiPhoneOutline = mdiPhoneOutline.MdiPhoneOutline;
480
497
  exports.MdiCellPhone = mdiCellPhone.MdiCellPhone;
481
498
  exports.MdiPipeDisconnected = mdiPipeDisconnected.MdiPipeDisconnected;
482
499
  exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
500
+ exports.MdiPrintView = mdiPrintView.MdiPrintView;
483
501
  exports.MdiPulse = mdiPulse.MdiPulse;
484
502
  exports.MdiPushNotification = mdiPushNotification.MdiPushNotification;
485
503
  exports.MdiPushNotificationOutline = mdiPushNotificationOutline.MdiPushNotificationOutline;
@@ -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";
@@ -439,8 +448,14 @@ export {
439
448
  MdiCrownCircleOutline,
440
449
  MdiCrownOutline,
441
450
  MdiDangerous,
451
+ MdiDatabase,
452
+ MdiDatabaseOutline,
453
+ MdiDatabaseSearch,
454
+ MdiDatabaseSearchOutline,
442
455
  MdiDatabaseSync,
443
456
  MdiDatabaseSyncOutline,
457
+ MdiDatabaseView,
458
+ MdiDatabaseViewOutline,
444
459
  MdiDeleteOutline,
445
460
  MdiDevTo,
446
461
  MdiDollar,
@@ -518,6 +533,8 @@ export {
518
533
  MdiNavigateNext,
519
534
  MdiNetworkOutline,
520
535
  MdiOfficeBuildingOutline,
536
+ MdiPageview,
537
+ MdiPageviewOutline,
521
538
  MdiPencil,
522
539
  MdiPencilBoxOutline,
523
540
  MdiPencilCircle,
@@ -532,6 +549,7 @@ export {
532
549
  MdiPhoneOutline,
533
550
  MdiPipeDisconnected,
534
551
  MdiPlusBoxOutline,
552
+ MdiPrintView,
535
553
  MdiPulse,
536
554
  MdiPushNotification,
537
555
  MdiPushNotificationOutline,
@@ -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>;
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-icons",
3
- "version": "0.0.33",
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",