@nr1e/qwik-icons 0.0.19 → 0.0.20

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 (46) hide show
  1. package/lib/components/icons/mdi-api.qwik.cjs +16 -0
  2. package/lib/components/icons/mdi-api.qwik.mjs +16 -0
  3. package/lib/components/icons/mdi-bar-code.qwik.cjs +16 -0
  4. package/lib/components/icons/mdi-bar-code.qwik.mjs +16 -0
  5. package/lib/components/icons/mdi-code-block-braces.qwik.cjs +16 -0
  6. package/lib/components/icons/mdi-code-block-braces.qwik.mjs +16 -0
  7. package/lib/components/icons/mdi-code-block-brackets.qwik.cjs +16 -0
  8. package/lib/components/icons/mdi-code-block-brackets.qwik.mjs +16 -0
  9. package/lib/components/icons/mdi-code-block-html.qwik.cjs +16 -0
  10. package/lib/components/icons/mdi-code-block-html.qwik.mjs +16 -0
  11. package/lib/components/icons/mdi-code-block-parentheses.qwik.cjs +16 -0
  12. package/lib/components/icons/mdi-code-block-parentheses.qwik.mjs +16 -0
  13. package/lib/components/icons/mdi-code-brackets.qwik.cjs +16 -0
  14. package/lib/components/icons/mdi-code-brackets.qwik.mjs +16 -0
  15. package/lib/components/icons/mdi-code-json.qwik.cjs +16 -0
  16. package/lib/components/icons/mdi-code-json.qwik.mjs +16 -0
  17. package/lib/components/icons/mdi-code-or.qwik.cjs +16 -0
  18. package/lib/components/icons/mdi-code-or.qwik.mjs +16 -0
  19. package/lib/components/icons/mdi-code-parentheses.qwik.cjs +16 -0
  20. package/lib/components/icons/mdi-code-parentheses.qwik.mjs +16 -0
  21. package/lib/components/icons/mdi-code-tags-check.qwik.cjs +16 -0
  22. package/lib/components/icons/mdi-code-tags-check.qwik.mjs +16 -0
  23. package/lib/components/icons/mdi-code-tags.qwik.cjs +16 -0
  24. package/lib/components/icons/mdi-code-tags.qwik.mjs +16 -0
  25. package/lib/components/icons/mdi-code.qwik.cjs +16 -0
  26. package/lib/components/icons/mdi-code.qwik.mjs +16 -0
  27. package/lib/components/icons/mdi-qr-code.qwik.cjs +16 -0
  28. package/lib/components/icons/mdi-qr-code.qwik.mjs +16 -0
  29. package/lib/index.qwik.cjs +28 -0
  30. package/lib/index.qwik.mjs +28 -0
  31. package/lib-types/components/icons/mdi-api.d.ts +2 -0
  32. package/lib-types/components/icons/mdi-bar-code.d.ts +2 -0
  33. package/lib-types/components/icons/mdi-code-block-braces.d.ts +2 -0
  34. package/lib-types/components/icons/mdi-code-block-brackets.d.ts +2 -0
  35. package/lib-types/components/icons/mdi-code-block-html.d.ts +2 -0
  36. package/lib-types/components/icons/mdi-code-block-parentheses.d.ts +2 -0
  37. package/lib-types/components/icons/mdi-code-brackets.d.ts +2 -0
  38. package/lib-types/components/icons/mdi-code-json.d.ts +2 -0
  39. package/lib-types/components/icons/mdi-code-or.d.ts +2 -0
  40. package/lib-types/components/icons/mdi-code-parentheses.d.ts +2 -0
  41. package/lib-types/components/icons/mdi-code-tags-check.d.ts +2 -0
  42. package/lib-types/components/icons/mdi-code-tags.d.ts +2 -0
  43. package/lib-types/components/icons/mdi-code.d.ts +2 -0
  44. package/lib-types/components/icons/mdi-qr-code.d.ts +2 -0
  45. package/lib-types/index.d.ts +14 -0
  46. 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 MdiApi = 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 7H5a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2m0 4H5V9h2m7-2h-4v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2m0 4h-2V9h2m6 0v6h1v2h-4v-2h1V9h-1V7h4v2Z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiApi = MdiApi;
@@ -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 MdiApi = 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 7H5a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2m0 4H5V9h2m7-2h-4v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2m0 4h-2V9h2m6 0v6h1v2h-4v-2h1V9h-1V7h4v2Z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiApi
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 MdiBarCode = 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 6h2v12H2zm3 0h1v12H5zm2 0h3v12H7zm4 0h1v12h-1zm3 0h2v12h-2zm3 0h3v12h-3zm4 0h1v12h-1z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiBarCode = MdiBarCode;
@@ -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 MdiBarCode = 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 6h2v12H2zm3 0h1v12H5zm2 0h3v12H7zm4 0h1v12h-1zm3 0h2v12h-2zm3 0h3v12h-3zm4 0h1v12h-1z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiBarCode
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 MdiCodeBlockBraces = 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: "M5 3c-1.1 0-2 .9-2 2s-.9 2-2 2v2c1.1 0 2 .9 2 2s.9 2 2 2h2v-2H5v-1c0-1.1-.9-2-2-2c1.1 0 2-.9 2-2V5h2V3m4 0c1.1 0 2 .9 2 2s.9 2 2 2v2c-1.1 0-2 .9-2 2s-.9 2-2 2H9v-2h2v-1c0-1.1.9-2 2-2c-1.1 0-2-.9-2-2V5H9V3zm11 3v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeBlockBraces = MdiCodeBlockBraces;
@@ -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 MdiCodeBlockBraces = 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: "M5 3c-1.1 0-2 .9-2 2s-.9 2-2 2v2c1.1 0 2 .9 2 2s.9 2 2 2h2v-2H5v-1c0-1.1-.9-2-2-2c1.1 0 2-.9 2-2V5h2V3m4 0c1.1 0 2 .9 2 2s.9 2 2 2v2c-1.1 0-2 .9-2 2s-.9 2-2 2H9v-2h2v-1c0-1.1.9-2 2-2c-1.1 0-2-.9-2-2V5H9V3zm11 3v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeBlockBraces
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 MdiCodeBlockBrackets = 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 3v10h4v-2H4V5h2V3zm10 8h-2v2h4V3h-4v2h2zm10-5v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeBlockBrackets = MdiCodeBlockBrackets;
@@ -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 MdiCodeBlockBrackets = 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 3v10h4v-2H4V5h2V3zm10 8h-2v2h4V3h-4v2h2zm10-5v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeBlockBrackets
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 MdiCodeBlockHtml = 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: "M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8zm5.82 0L16 8l-4.59 4.6L10 11.18L13.18 8L10 4.82zM22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-4h2v4h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeBlockHtml = MdiCodeBlockHtml;
@@ -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 MdiCodeBlockHtml = 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: "M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8zm5.82 0L16 8l-4.59 4.6L10 11.18L13.18 8L10 4.82zM22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-4h2v4h16V6h-2.97V4H20c1.11 0 2 .89 2 2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeBlockHtml
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 MdiCodeBlockParentheses = 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.6 3C13.1 4.3 14 6.1 14 8s-.9 3.7-2.4 5l-1.6-.6c1.3-1 2-2.7 2-4.4s-.7-3.4-2-4.4zM4.4 3l1.6.6C4.7 4.6 4 6.3 4 8s.7 3.4 2 4.4l-1.6.6C2.9 11.7 2 9.9 2 8s.9-3.7 2.4-5M22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-3.97V4H20c1.11 0 2 .89 2 2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeBlockParentheses = MdiCodeBlockParentheses;
@@ -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 MdiCodeBlockParentheses = 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.6 3C13.1 4.3 14 6.1 14 8s-.9 3.7-2.4 5l-1.6-.6c1.3-1 2-2.7 2-4.4s-.7-3.4-2-4.4zM4.4 3l1.6.6C4.7 4.6 4 6.3 4 8s.7 3.4 2 4.4l-1.6.6C2.9 11.7 2 9.9 2 8s.9-3.7 2.4-5M22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-3.97V4H20c1.11 0 2 .89 2 2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeBlockParentheses
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 MdiCodeBrackets = 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: "M15 4v2h3v12h-3v2h5V4M4 4v16h5v-2H6V6h3V4z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeBrackets = MdiCodeBrackets;
@@ -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 MdiCodeBrackets = 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: "M15 4v2h3v12h-3v2h5V4M4 4v16h5v-2H6V6h3V4z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeBrackets
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 MdiCodeJson = 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: "M5 3h2v2H5v5a2 2 0 0 1-2 2a2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2a2 2 0 0 1-2-2V5h-2V3zm-7 12a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeJson = MdiCodeJson;
@@ -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 MdiCodeJson = 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: "M5 3h2v2H5v5a2 2 0 0 1-2 2a2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2a2 2 0 0 1-2-2V5h-2V3zm-7 12a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeJson
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 MdiCodeOr = 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: "M14 21V3h2v18zm-6 0V3h2v18z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeOr = MdiCodeOr;
@@ -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 MdiCodeOr = 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: "M14 21V3h2v18zm-6 0V3h2v18z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeOr
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 MdiCodeParentheses = 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: "M17.62 3C19.13 5.27 20 8.55 20 12c0 3.44-.87 6.72-2.38 9L16 19.96c1.26-1.89 2-4.83 2-7.96s-.74-6.08-2-7.97zM6.38 3L8 4.04C6.74 5.92 6 8.87 6 12s.74 6.08 2 7.96L6.38 21C4.87 18.73 4 15.45 4 12s.87-6.73 2.38-9"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeParentheses = MdiCodeParentheses;
@@ -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 MdiCodeParentheses = 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: "M17.62 3C19.13 5.27 20 8.55 20 12c0 3.44-.87 6.72-2.38 9L16 19.96c1.26-1.89 2-4.83 2-7.96s-.74-6.08-2-7.97zM6.38 3L8 4.04C6.74 5.92 6 8.87 6 12s.74 6.08 2 7.96L6.38 21C4.87 18.73 4 15.45 4 12s.87-6.73 2.38-9"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeParentheses
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 MdiCodeTagsCheck = 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.59 3.41L2 8l4.59 4.6L8 11.18L4.82 8L8 4.82zm5.82 0L11 4.82L14.18 8L11 11.18l1.41 1.42L17 8zm9.18 8.18l-8.09 8.09L9.83 16l-1.41 1.41l5.08 5.09L23 13z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeTagsCheck = MdiCodeTagsCheck;
@@ -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 MdiCodeTagsCheck = 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.59 3.41L2 8l4.59 4.6L8 11.18L4.82 8L8 4.82zm5.82 0L11 4.82L14.18 8L11 11.18l1.41 1.42L17 8zm9.18 8.18l-8.09 8.09L9.83 16l-1.41 1.41l5.08 5.09L23 13z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeTagsCheck
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 MdiCodeTags = 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: "m14.6 16.6l4.6-4.6l-4.6-4.6L16 6l6 6l-6 6zm-5.2 0L4.8 12l4.6-4.6L8 6l-6 6l6 6z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCodeTags = MdiCodeTags;
@@ -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 MdiCodeTags = 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: "m14.6 16.6l4.6-4.6l-4.6-4.6L16 6l6 6l-6 6zm-5.2 0L4.8 12l4.6-4.6L8 6l-6 6l6 6z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCodeTags
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 MdiCode = 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.89 3l1.96.4L11.11 21l-1.96-.4zm6.7 9L16 8.41V5.58L22.42 12L16 18.41v-2.83zM1.58 12L8 5.58v2.83L4.41 12L8 15.58v2.83z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiCode = MdiCode;
@@ -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 MdiCode = 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.89 3l1.96.4L11.11 21l-1.96-.4zm6.7 9L16 8.41V5.58L22.42 12L16 18.41v-2.83zM1.58 12L8 5.58v2.83L4.41 12L8 15.58v2.83z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiCode
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 MdiQrCode = 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 11h2v2H3zm8-6h2v4h-2zm-2 6h4v4h-2v-2H9zm6 0h2v2h2v-2h2v2h-2v2h2v4h-2v2h-2v-2h-4v2h-2v-4h4v-2h2v-2h-2zm4 8v-4h-2v4zM15 3h6v6h-6zm2 2v2h2V5zM3 3h6v6H3zm2 2v2h2V5zM3 15h6v6H3zm2 2v2h2v-2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiQrCode = MdiQrCode;
@@ -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 MdiQrCode = 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 11h2v2H3zm8-6h2v4h-2zm-2 6h4v4h-2v-2H9zm6 0h2v2h2v-2h2v2h-2v2h2v4h-2v2h-2v-2h-4v2h-2v-4h4v-2h2v-2h-2zm4 8v-4h-2v4zM15 3h6v6h-6zm2 2v2h2V5zM3 3h6v6H3zm2 2v2h2V5zM3 15h6v6H3zm2 2v2h2v-2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiQrCode
16
+ };
@@ -13,10 +13,12 @@ const mdiAlertBoxOutline = require("./components/icons/mdi-alert-box-outline.qwi
13
13
  const mdiAlertCircle = require("./components/icons/mdi-alert-circle.qwik.cjs");
14
14
  const mdiAlertCircleOutline = require("./components/icons/mdi-alert-circle-outline.qwik.cjs");
15
15
  const mdiAlertOutline = require("./components/icons/mdi-alert-outline.qwik.cjs");
16
+ const mdiApi = require("./components/icons/mdi-api.qwik.cjs");
16
17
  const mdiArrowBackCircle = require("./components/icons/mdi-arrow-back-circle.qwik.cjs");
17
18
  const mdiArrowForwardCircle = require("./components/icons/mdi-arrow-forward-circle.qwik.cjs");
18
19
  const mdiBank = require("./components/icons/mdi-bank.qwik.cjs");
19
20
  const mdiBankOutline = require("./components/icons/mdi-bank-outline.qwik.cjs");
21
+ const mdiBarCode = require("./components/icons/mdi-bar-code.qwik.cjs");
20
22
  const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
21
23
  const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
22
24
  const mdiBuilding = require("./components/icons/mdi-building.qwik.cjs");
@@ -29,6 +31,17 @@ const mdiClose = require("./components/icons/mdi-close.qwik.cjs");
29
31
  const mdiCloudDownload = require("./components/icons/mdi-cloud-download.qwik.cjs");
30
32
  const mdiCloudDownloadOutline = require("./components/icons/mdi-cloud-download-outline.qwik.cjs");
31
33
  const mdiCloudLockOutline = require("./components/icons/mdi-cloud-lock-outline.qwik.cjs");
34
+ const mdiCode = require("./components/icons/mdi-code.qwik.cjs");
35
+ const mdiCodeBlockBraces = require("./components/icons/mdi-code-block-braces.qwik.cjs");
36
+ const mdiCodeBlockBrackets = require("./components/icons/mdi-code-block-brackets.qwik.cjs");
37
+ const mdiCodeBlockHtml = require("./components/icons/mdi-code-block-html.qwik.cjs");
38
+ const mdiCodeBlockParentheses = require("./components/icons/mdi-code-block-parentheses.qwik.cjs");
39
+ const mdiCodeBrackets = require("./components/icons/mdi-code-brackets.qwik.cjs");
40
+ const mdiCodeJson = require("./components/icons/mdi-code-json.qwik.cjs");
41
+ const mdiCodeOr = require("./components/icons/mdi-code-or.qwik.cjs");
42
+ const mdiCodeParentheses = require("./components/icons/mdi-code-parentheses.qwik.cjs");
43
+ const mdiCodeTags = require("./components/icons/mdi-code-tags.qwik.cjs");
44
+ const mdiCodeTagsCheck = require("./components/icons/mdi-code-tags-check.qwik.cjs");
32
45
  const mdiContact = require("./components/icons/mdi-contact.qwik.cjs");
33
46
  const mdiContactOutline = require("./components/icons/mdi-contact-outline.qwik.cjs");
34
47
  const mdiContacts = require("./components/icons/mdi-contacts.qwik.cjs");
@@ -86,6 +99,7 @@ const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
86
99
  const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
87
100
  const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
88
101
  const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
102
+ const mdiQrCode = require("./components/icons/mdi-qr-code.qwik.cjs");
89
103
  const mdiRefresh = require("./components/icons/mdi-refresh.qwik.cjs");
90
104
  const mdiSearch = require("./components/icons/mdi-search.qwik.cjs");
91
105
  const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs");
@@ -214,10 +228,12 @@ exports.MdiAlertBoxOutline = mdiAlertBoxOutline.MdiAlertBoxOutline;
214
228
  exports.MdiAlertCircle = mdiAlertCircle.MdiAlertCircle;
215
229
  exports.MdiAlertCircleOutline = mdiAlertCircleOutline.MdiAlertCircleOutline;
216
230
  exports.MdiAlertOutline = mdiAlertOutline.MdiAlertOutline;
231
+ exports.MdiApi = mdiApi.MdiApi;
217
232
  exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
218
233
  exports.MdiArrowForwardCircle = mdiArrowForwardCircle.MdiArrowForwardCircle;
219
234
  exports.MdiBank = mdiBank.MdiBank;
220
235
  exports.MdiBankOutline = mdiBankOutline.MdiBankOutline;
236
+ exports.MdiBarCode = mdiBarCode.MdiBarCode;
221
237
  exports.MdiBrain = mdiBrain.MdiBrain;
222
238
  exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
223
239
  exports.MdiBuilding = mdiBuilding.MdiBuilding;
@@ -230,6 +246,17 @@ exports.MdiClose = mdiClose.MdiClose;
230
246
  exports.MdiCloudDownload = mdiCloudDownload.MdiCloudDownload;
231
247
  exports.MdiCloudDownloadOutline = mdiCloudDownloadOutline.MdiCloudDownloadOutline;
232
248
  exports.MdiCloudLockOutline = mdiCloudLockOutline.MdiCloudLockOutline;
249
+ exports.MdiCode = mdiCode.MdiCode;
250
+ exports.MdiCodeBlockBraces = mdiCodeBlockBraces.MdiCodeBlockBraces;
251
+ exports.MdiCodeBlockBrackets = mdiCodeBlockBrackets.MdiCodeBlockBrackets;
252
+ exports.MdiCodeBlockHtml = mdiCodeBlockHtml.MdiCodeBlockHtml;
253
+ exports.MdiCodeBlockParentheses = mdiCodeBlockParentheses.MdiCodeBlockParentheses;
254
+ exports.MdiCodeBrackets = mdiCodeBrackets.MdiCodeBrackets;
255
+ exports.MdiCodeJson = mdiCodeJson.MdiCodeJson;
256
+ exports.MdiCodeOr = mdiCodeOr.MdiCodeOr;
257
+ exports.MdiCodeParentheses = mdiCodeParentheses.MdiCodeParentheses;
258
+ exports.MdiCodeTags = mdiCodeTags.MdiCodeTags;
259
+ exports.MdiCodeTagsCheck = mdiCodeTagsCheck.MdiCodeTagsCheck;
233
260
  exports.MdiContact = mdiContact.MdiContact;
234
261
  exports.MdiContactOutline = mdiContactOutline.MdiContactOutline;
235
262
  exports.MdiContacts = mdiContacts.MdiContacts;
@@ -287,6 +314,7 @@ exports.MdiPercent = mdiPercent.MdiPercent;
287
314
  exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
288
315
  exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
289
316
  exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
317
+ exports.MdiQrCode = mdiQrCode.MdiQrCode;
290
318
  exports.MdiRefresh = mdiRefresh.MdiRefresh;
291
319
  exports.MdiSearch = mdiSearch.MdiSearch;
292
320
  exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
@@ -11,10 +11,12 @@ import { MdiAlertBoxOutline } from "./components/icons/mdi-alert-box-outline.qwi
11
11
  import { MdiAlertCircle } from "./components/icons/mdi-alert-circle.qwik.mjs";
12
12
  import { MdiAlertCircleOutline } from "./components/icons/mdi-alert-circle-outline.qwik.mjs";
13
13
  import { MdiAlertOutline } from "./components/icons/mdi-alert-outline.qwik.mjs";
14
+ import { MdiApi } from "./components/icons/mdi-api.qwik.mjs";
14
15
  import { MdiArrowBackCircle } from "./components/icons/mdi-arrow-back-circle.qwik.mjs";
15
16
  import { MdiArrowForwardCircle } from "./components/icons/mdi-arrow-forward-circle.qwik.mjs";
16
17
  import { MdiBank } from "./components/icons/mdi-bank.qwik.mjs";
17
18
  import { MdiBankOutline } from "./components/icons/mdi-bank-outline.qwik.mjs";
19
+ import { MdiBarCode } from "./components/icons/mdi-bar-code.qwik.mjs";
18
20
  import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
19
21
  import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
20
22
  import { MdiBuilding } from "./components/icons/mdi-building.qwik.mjs";
@@ -27,6 +29,17 @@ import { MdiClose } from "./components/icons/mdi-close.qwik.mjs";
27
29
  import { MdiCloudDownload } from "./components/icons/mdi-cloud-download.qwik.mjs";
28
30
  import { MdiCloudDownloadOutline } from "./components/icons/mdi-cloud-download-outline.qwik.mjs";
29
31
  import { MdiCloudLockOutline } from "./components/icons/mdi-cloud-lock-outline.qwik.mjs";
32
+ import { MdiCode } from "./components/icons/mdi-code.qwik.mjs";
33
+ import { MdiCodeBlockBraces } from "./components/icons/mdi-code-block-braces.qwik.mjs";
34
+ import { MdiCodeBlockBrackets } from "./components/icons/mdi-code-block-brackets.qwik.mjs";
35
+ import { MdiCodeBlockHtml } from "./components/icons/mdi-code-block-html.qwik.mjs";
36
+ import { MdiCodeBlockParentheses } from "./components/icons/mdi-code-block-parentheses.qwik.mjs";
37
+ import { MdiCodeBrackets } from "./components/icons/mdi-code-brackets.qwik.mjs";
38
+ import { MdiCodeJson } from "./components/icons/mdi-code-json.qwik.mjs";
39
+ import { MdiCodeOr } from "./components/icons/mdi-code-or.qwik.mjs";
40
+ import { MdiCodeParentheses } from "./components/icons/mdi-code-parentheses.qwik.mjs";
41
+ import { MdiCodeTags } from "./components/icons/mdi-code-tags.qwik.mjs";
42
+ import { MdiCodeTagsCheck } from "./components/icons/mdi-code-tags-check.qwik.mjs";
30
43
  import { MdiContact } from "./components/icons/mdi-contact.qwik.mjs";
31
44
  import { MdiContactOutline } from "./components/icons/mdi-contact-outline.qwik.mjs";
32
45
  import { MdiContacts } from "./components/icons/mdi-contacts.qwik.mjs";
@@ -84,6 +97,7 @@ import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
84
97
  import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
85
98
  import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
86
99
  import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
100
+ import { MdiQrCode } from "./components/icons/mdi-qr-code.qwik.mjs";
87
101
  import { MdiRefresh } from "./components/icons/mdi-refresh.qwik.mjs";
88
102
  import { MdiSearch } from "./components/icons/mdi-search.qwik.mjs";
89
103
  import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs";
@@ -266,10 +280,12 @@ export {
266
280
  MdiAlertCircle,
267
281
  MdiAlertCircleOutline,
268
282
  MdiAlertOutline,
283
+ MdiApi,
269
284
  MdiArrowBackCircle,
270
285
  MdiArrowForwardCircle,
271
286
  MdiBank,
272
287
  MdiBankOutline,
288
+ MdiBarCode,
273
289
  MdiBrain,
274
290
  MdiBrainFreezeOutline,
275
291
  MdiBuilding,
@@ -282,6 +298,17 @@ export {
282
298
  MdiCloudDownload,
283
299
  MdiCloudDownloadOutline,
284
300
  MdiCloudLockOutline,
301
+ MdiCode,
302
+ MdiCodeBlockBraces,
303
+ MdiCodeBlockBrackets,
304
+ MdiCodeBlockHtml,
305
+ MdiCodeBlockParentheses,
306
+ MdiCodeBrackets,
307
+ MdiCodeJson,
308
+ MdiCodeOr,
309
+ MdiCodeParentheses,
310
+ MdiCodeTags,
311
+ MdiCodeTagsCheck,
285
312
  MdiContact,
286
313
  MdiContactOutline,
287
314
  MdiContacts,
@@ -339,6 +366,7 @@ export {
339
366
  MdiPersonCheck,
340
367
  MdiPersonCheckOutline,
341
368
  MdiPlusBoxOutline,
369
+ MdiQrCode,
342
370
  MdiRefresh,
343
371
  MdiSearch,
344
372
  MdiSecureOutline,
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiApi: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiBarCode: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeBlockBraces: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeBlockBrackets: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeBlockHtml: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeBlockParentheses: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeBrackets: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeJson: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeOr: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeParentheses: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeTagsCheck: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCodeTags: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiCode: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiQrCode: import("@builder.io/qwik").Component<IconProps>;
@@ -11,10 +11,12 @@ export * from './components/icons/mdi-alert-box-outline';
11
11
  export * from './components/icons/mdi-alert-circle';
12
12
  export * from './components/icons/mdi-alert-circle-outline';
13
13
  export * from './components/icons/mdi-alert-outline';
14
+ export * from './components/icons/mdi-api';
14
15
  export * from './components/icons/mdi-arrow-back-circle';
15
16
  export * from './components/icons/mdi-arrow-forward-circle';
16
17
  export * from './components/icons/mdi-bank';
17
18
  export * from './components/icons/mdi-bank-outline';
19
+ export * from './components/icons/mdi-bar-code';
18
20
  export * from './components/icons/mdi-brain';
19
21
  export * from './components/icons/mdi-brain-freeze-outline';
20
22
  export * from './components/icons/mdi-building';
@@ -27,6 +29,17 @@ export * from './components/icons/mdi-close';
27
29
  export * from './components/icons/mdi-cloud-download';
28
30
  export * from './components/icons/mdi-cloud-download-outline';
29
31
  export * from './components/icons/mdi-cloud-lock-outline';
32
+ export * from './components/icons/mdi-code';
33
+ export * from './components/icons/mdi-code-block-braces';
34
+ export * from './components/icons/mdi-code-block-brackets';
35
+ export * from './components/icons/mdi-code-block-html';
36
+ export * from './components/icons/mdi-code-block-parentheses';
37
+ export * from './components/icons/mdi-code-brackets';
38
+ export * from './components/icons/mdi-code-json';
39
+ export * from './components/icons/mdi-code-or';
40
+ export * from './components/icons/mdi-code-parentheses';
41
+ export * from './components/icons/mdi-code-tags';
42
+ export * from './components/icons/mdi-code-tags-check';
30
43
  export * from './components/icons/mdi-contact';
31
44
  export * from './components/icons/mdi-contact-outline';
32
45
  export * from './components/icons/mdi-contacts';
@@ -84,6 +97,7 @@ export * from './components/icons/mdi-percent';
84
97
  export * from './components/icons/mdi-person-check';
85
98
  export * from './components/icons/mdi-person-check-outline';
86
99
  export * from './components/icons/mdi-plus-box-outline';
100
+ export * from './components/icons/mdi-qr-code';
87
101
  export * from './components/icons/mdi-refresh';
88
102
  export * from './components/icons/mdi-search';
89
103
  export * from './components/icons/mdi-secure-outline';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-icons",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "NR1E Qwik Icons Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {
@@ -33,9 +33,9 @@
33
33
  "type": "module",
34
34
  "devDependencies": {
35
35
  "@builder.io/qwik": "1.19.0",
36
- "@eslint/js": "^9.39.2",
36
+ "@eslint/js": "^9.39.3",
37
37
  "@types/node": "^24.10.13",
38
- "eslint": "9.39.2",
38
+ "eslint": "9.39.3",
39
39
  "eslint-plugin-qwik": "1.19.0",
40
40
  "globals": "17.3.0",
41
41
  "np": "^11.0.2",