@nr1e/qwik-icons 0.0.27 → 0.0.28

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 (25) hide show
  1. package/lib/components/icons/mdi-drive-document.qwik.cjs +16 -0
  2. package/lib/components/icons/mdi-drive-document.qwik.mjs +16 -0
  3. package/lib/components/icons/mdi-file-document-box-multiple-outline.qwik.cjs +16 -0
  4. package/lib/components/icons/mdi-file-document-box-multiple-outline.qwik.mjs +16 -0
  5. package/lib/components/icons/mdi-file-document-box-multiple.qwik.cjs +16 -0
  6. package/lib/components/icons/mdi-file-document-box-multiple.qwik.mjs +16 -0
  7. package/lib/components/icons/mdi-file-document-box-outline.qwik.cjs +16 -0
  8. package/lib/components/icons/mdi-file-document-box-outline.qwik.mjs +16 -0
  9. package/lib/components/icons/mdi-file-document-box.qwik.cjs +16 -0
  10. package/lib/components/icons/mdi-file-document-box.qwik.mjs +16 -0
  11. package/lib/components/icons/mdi-file-document-multiple-outline.qwik.cjs +16 -0
  12. package/lib/components/icons/mdi-file-document-multiple-outline.qwik.mjs +16 -0
  13. package/lib/components/icons/mdi-file-document-multiple.qwik.cjs +16 -0
  14. package/lib/components/icons/mdi-file-document-multiple.qwik.mjs +16 -0
  15. package/lib/index.qwik.cjs +14 -0
  16. package/lib/index.qwik.mjs +14 -0
  17. package/lib-types/components/icons/mdi-drive-document.d.ts +2 -0
  18. package/lib-types/components/icons/mdi-file-document-box-multiple-outline.d.ts +2 -0
  19. package/lib-types/components/icons/mdi-file-document-box-multiple.d.ts +2 -0
  20. package/lib-types/components/icons/mdi-file-document-box-outline.d.ts +2 -0
  21. package/lib-types/components/icons/mdi-file-document-box.d.ts +2 -0
  22. package/lib-types/components/icons/mdi-file-document-multiple-outline.d.ts +2 -0
  23. package/lib-types/components/icons/mdi-file-document-multiple.d.ts +2 -0
  24. package/lib-types/index.d.ts +7 -0
  25. package/package.json +1 -1
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg = require("../svg.qwik.cjs");
6
+ const MdiDriveDocument = 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 17H7v-2h7m3-2H7v-2h10m0-2H7V7h10m2-4H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiDriveDocument = MdiDriveDocument;
@@ -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 MdiDriveDocument = 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 17H7v-2h7m3-2H7v-2h10m0-2H7V7h10m2-4H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiDriveDocument
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 MdiFileDocumentBoxMultipleOutline = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 24 24",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
11
+ fill: "currentColor",
12
+ d: "M16 15H9v-2h7zm3-4H9V9h10zm0-4H9V5h10zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2zM7 3v14h14V3z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentBoxMultipleOutline = MdiFileDocumentBoxMultipleOutline;
@@ -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 MdiFileDocumentBoxMultipleOutline = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 24 24",
8
+ children: /* @__PURE__ */ jsx("path", {
9
+ fill: "currentColor",
10
+ d: "M16 15H9v-2h7zm3-4H9V9h10zm0-4H9V5h10zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2zM7 3v14h14V3z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentBoxMultipleOutline
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 MdiFileDocumentBoxMultiple = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 24 24",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
11
+ fill: "currentColor",
12
+ d: "M16 15H9v-2h7m3-2H9V9h10m0-2H9V5h10m2-4H7c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2M3 5v16h16v2H3a2 2 0 0 1-2-2V5z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentBoxMultiple = MdiFileDocumentBoxMultiple;
@@ -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 MdiFileDocumentBoxMultiple = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 24 24",
8
+ children: /* @__PURE__ */ jsx("path", {
9
+ fill: "currentColor",
10
+ d: "M16 15H9v-2h7m3-2H9V9h10m0-2H9V5h10m2-4H7c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2M3 5v16h16v2H3a2 2 0 0 1-2-2V5z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentBoxMultiple
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 MdiFileDocumentBoxOutline = 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.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm2 2v2h10V7zm0 4v2h10v-2zm0 4v2h7v-2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentBoxOutline = MdiFileDocumentBoxOutline;
@@ -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 MdiFileDocumentBoxOutline = 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.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm2 2v2h10V7zm0 4v2h10v-2zm0 4v2h7v-2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentBoxOutline
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 MdiFileDocumentBox = 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.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm2 2v2h10V7zm0 4v2h10v-2zm0 4v2h7v-2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentBox = MdiFileDocumentBox;
@@ -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 MdiFileDocumentBox = 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.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm2 2v2h10V7zm0 4v2h10v-2zm0 4v2h7v-2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentBox
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 MdiFileDocumentMultipleOutline = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 24 24",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
11
+ fill: "currentColor",
12
+ d: "M16 0H8C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6zm4 18H8V2h7v5h5zM4 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm6 6v2h8v-2zm0 4v2h5v-2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentMultipleOutline = MdiFileDocumentMultipleOutline;
@@ -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 MdiFileDocumentMultipleOutline = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 24 24",
8
+ children: /* @__PURE__ */ jsx("path", {
9
+ fill: "currentColor",
10
+ d: "M16 0H8C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6zm4 18H8V2h7v5h5zM4 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm6 6v2h8v-2zm0 4v2h5v-2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentMultipleOutline
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 MdiFileDocumentMultiple = 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 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm11 3h5.5L15 1.5zM8 0h8l6 6v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V2c0-1.11.89-2 2-2m9 16v-2H8v2zm3-4v-2H8v2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiFileDocumentMultiple = MdiFileDocumentMultiple;
@@ -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 MdiFileDocumentMultiple = 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 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm11 3h5.5L15 1.5zM8 0h8l6 6v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V2c0-1.11.89-2 2-2m9 16v-2H8v2zm3-4v-2H8v2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiFileDocumentMultiple
16
+ };
@@ -74,12 +74,19 @@ const mdiDeleteOutline = require("./components/icons/mdi-delete-outline.qwik.cjs
74
74
  const mdiDevTo = require("./components/icons/mdi-dev-to.qwik.cjs");
75
75
  const mdiDollar = require("./components/icons/mdi-dollar.qwik.cjs");
76
76
  const mdiDownload = require("./components/icons/mdi-download.qwik.cjs");
77
+ const mdiDriveDocument = require("./components/icons/mdi-drive-document.qwik.cjs");
77
78
  const mdiEmail = require("./components/icons/mdi-email.qwik.cjs");
78
79
  const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs");
79
80
  const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
80
81
  const mdiError = require("./components/icons/mdi-error.qwik.cjs");
81
82
  const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
82
83
  const mdiFeatureHighlight = require("./components/icons/mdi-feature-highlight.qwik.cjs");
84
+ const mdiFileDocumentBox = require("./components/icons/mdi-file-document-box.qwik.cjs");
85
+ const mdiFileDocumentBoxMultiple = require("./components/icons/mdi-file-document-box-multiple.qwik.cjs");
86
+ const mdiFileDocumentBoxMultipleOutline = require("./components/icons/mdi-file-document-box-multiple-outline.qwik.cjs");
87
+ const mdiFileDocumentBoxOutline = require("./components/icons/mdi-file-document-box-outline.qwik.cjs");
88
+ const mdiFileDocumentMultiple = require("./components/icons/mdi-file-document-multiple.qwik.cjs");
89
+ const mdiFileDocumentMultipleOutline = require("./components/icons/mdi-file-document-multiple-outline.qwik.cjs");
83
90
  const mdiGauge = require("./components/icons/mdi-gauge.qwik.cjs");
84
91
  const mdiGearOutline = require("./components/icons/mdi-gear-outline.qwik.cjs");
85
92
  const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
@@ -336,12 +343,19 @@ exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
336
343
  exports.MdiDevTo = mdiDevTo.MdiDevTo;
337
344
  exports.MdiDollar = mdiDollar.MdiDollar;
338
345
  exports.MdiDownload = mdiDownload.MdiDownload;
346
+ exports.MdiDriveDocument = mdiDriveDocument.MdiDriveDocument;
339
347
  exports.MdiEmail = mdiEmail.MdiEmail;
340
348
  exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
341
349
  exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
342
350
  exports.MdiError = mdiError.MdiError;
343
351
  exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
344
352
  exports.MdiFeatureHighlight = mdiFeatureHighlight.MdiFeatureHighlight;
353
+ exports.MdiFileDocumentBox = mdiFileDocumentBox.MdiFileDocumentBox;
354
+ exports.MdiFileDocumentBoxMultiple = mdiFileDocumentBoxMultiple.MdiFileDocumentBoxMultiple;
355
+ exports.MdiFileDocumentBoxMultipleOutline = mdiFileDocumentBoxMultipleOutline.MdiFileDocumentBoxMultipleOutline;
356
+ exports.MdiFileDocumentBoxOutline = mdiFileDocumentBoxOutline.MdiFileDocumentBoxOutline;
357
+ exports.MdiFileDocumentMultiple = mdiFileDocumentMultiple.MdiFileDocumentMultiple;
358
+ exports.MdiFileDocumentMultipleOutline = mdiFileDocumentMultipleOutline.MdiFileDocumentMultipleOutline;
345
359
  exports.MdiGauge = mdiGauge.MdiGauge;
346
360
  exports.MdiGearOutline = mdiGearOutline.MdiGearOutline;
347
361
  exports.MdiGmail = mdiGmail.MdiGmail;
@@ -72,12 +72,19 @@ import { MdiDeleteOutline } from "./components/icons/mdi-delete-outline.qwik.mjs
72
72
  import { MdiDevTo } from "./components/icons/mdi-dev-to.qwik.mjs";
73
73
  import { MdiDollar } from "./components/icons/mdi-dollar.qwik.mjs";
74
74
  import { MdiDownload } from "./components/icons/mdi-download.qwik.mjs";
75
+ import { MdiDriveDocument } from "./components/icons/mdi-drive-document.qwik.mjs";
75
76
  import { MdiEmail } from "./components/icons/mdi-email.qwik.mjs";
76
77
  import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
77
78
  import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
78
79
  import { MdiError } from "./components/icons/mdi-error.qwik.mjs";
79
80
  import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
80
81
  import { MdiFeatureHighlight } from "./components/icons/mdi-feature-highlight.qwik.mjs";
82
+ import { MdiFileDocumentBox } from "./components/icons/mdi-file-document-box.qwik.mjs";
83
+ import { MdiFileDocumentBoxMultiple } from "./components/icons/mdi-file-document-box-multiple.qwik.mjs";
84
+ import { MdiFileDocumentBoxMultipleOutline } from "./components/icons/mdi-file-document-box-multiple-outline.qwik.mjs";
85
+ import { MdiFileDocumentBoxOutline } from "./components/icons/mdi-file-document-box-outline.qwik.mjs";
86
+ import { MdiFileDocumentMultiple } from "./components/icons/mdi-file-document-multiple.qwik.mjs";
87
+ import { MdiFileDocumentMultipleOutline } from "./components/icons/mdi-file-document-multiple-outline.qwik.mjs";
81
88
  import { MdiGauge } from "./components/icons/mdi-gauge.qwik.mjs";
82
89
  import { MdiGearOutline } from "./components/icons/mdi-gear-outline.qwik.mjs";
83
90
  import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
@@ -388,12 +395,19 @@ export {
388
395
  MdiDevTo,
389
396
  MdiDollar,
390
397
  MdiDownload,
398
+ MdiDriveDocument,
391
399
  MdiEmail,
392
400
  MdiEmailOutline,
393
401
  MdiEmoticonDevil,
394
402
  MdiError,
395
403
  MdiErrorOutline,
396
404
  MdiFeatureHighlight,
405
+ MdiFileDocumentBox,
406
+ MdiFileDocumentBoxMultiple,
407
+ MdiFileDocumentBoxMultipleOutline,
408
+ MdiFileDocumentBoxOutline,
409
+ MdiFileDocumentMultiple,
410
+ MdiFileDocumentMultipleOutline,
397
411
  MdiGauge,
398
412
  MdiGearOutline,
399
413
  MdiGmail,
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiDriveDocument: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentBoxMultipleOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentBoxMultiple: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentBoxOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentBox: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentMultipleOutline: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const MdiFileDocumentMultiple: import("@builder.io/qwik").Component<IconProps>;
@@ -72,12 +72,19 @@ export * from './components/icons/mdi-delete-outline';
72
72
  export * from './components/icons/mdi-dev-to';
73
73
  export * from './components/icons/mdi-dollar';
74
74
  export * from './components/icons/mdi-download';
75
+ export * from './components/icons/mdi-drive-document';
75
76
  export * from './components/icons/mdi-email';
76
77
  export * from './components/icons/mdi-email-outline';
77
78
  export * from './components/icons/mdi-emoticon-devil';
78
79
  export * from './components/icons/mdi-error';
79
80
  export * from './components/icons/mdi-error-outline';
80
81
  export * from './components/icons/mdi-feature-highlight';
82
+ export * from './components/icons/mdi-file-document-box';
83
+ export * from './components/icons/mdi-file-document-box-multiple';
84
+ export * from './components/icons/mdi-file-document-box-multiple-outline';
85
+ export * from './components/icons/mdi-file-document-box-outline';
86
+ export * from './components/icons/mdi-file-document-multiple';
87
+ export * from './components/icons/mdi-file-document-multiple-outline';
81
88
  export * from './components/icons/mdi-gauge';
82
89
  export * from './components/icons/mdi-gear-outline';
83
90
  export * from './components/icons/mdi-gmail';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-icons",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "NR1E Qwik Icons Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {