@nr1e/qwik-icons 0.0.26 → 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.
- package/lib/components/icons/mdi-connection.qwik.cjs +16 -0
- package/lib/components/icons/mdi-connection.qwik.mjs +16 -0
- package/lib/components/icons/mdi-drive-document.qwik.cjs +16 -0
- package/lib/components/icons/mdi-drive-document.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-box-multiple-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-box-multiple-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-box-multiple.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-box-multiple.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-box-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-box-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-multiple-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-multiple-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-file-document-multiple.qwik.cjs +16 -0
- package/lib/components/icons/mdi-file-document-multiple.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pipe-disconnected.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pipe-disconnected.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +18 -0
- package/lib/index.qwik.mjs +18 -0
- package/lib-types/components/icons/mdi-connection.d.ts +2 -0
- package/lib-types/components/icons/mdi-drive-document.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-box-multiple-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-box-multiple.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-box-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-multiple-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-file-document-multiple.d.ts +2 -0
- package/lib-types/components/icons/mdi-pipe-disconnected.d.ts +2 -0
- package/lib-types/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiConnection = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M21.4 7.5c.8.8.8 2.1 0 2.8l-2.8 2.8l-7.8-7.8l2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8l3-3l1.4 1.4l-3 3zm-5.8 5.8l-1.4-1.4l-2.8 2.8l-2.1-2.1l2.8-2.8l-1.4-1.4l-2.8 2.8l-1.5-1.4l-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8l-4 4l1.4 1.4l4-4l1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8l-1.4-1.4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiConnection = MdiConnection;
|
|
@@ -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 MdiConnection = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M21.4 7.5c.8.8.8 2.1 0 2.8l-2.8 2.8l-7.8-7.8l2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8l3-3l1.4 1.4l-3 3zm-5.8 5.8l-1.4-1.4l-2.8 2.8l-2.1-2.1l2.8-2.8l-1.4-1.4l-2.8 2.8l-1.5-1.4l-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8l-4 4l1.4 1.4l4-4l1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8l-1.4-1.4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiConnection
|
|
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 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
|
+
};
|
|
@@ -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 MdiPipeDisconnected = 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 9v2H8V9h2V8H4v2H2V2h2v2h8a2 2 0 0 1 2 2v3zm-6 6v3a2 2 0 0 0 2 2h8v2h2v-8h-2v2h-6v-1h2v-2H8v2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPipeDisconnected = MdiPipeDisconnected;
|
|
@@ -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 MdiPipeDisconnected = 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 9v2H8V9h2V8H4v2H2V2h2v2h8a2 2 0 0 1 2 2v3zm-6 6v3a2 2 0 0 0 2 2h8v2h2v-8h-2v2h-6v-1h2v-2H8v2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPipeDisconnected
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -58,6 +58,7 @@ const mdiCodeOr = require("./components/icons/mdi-code-or.qwik.cjs");
|
|
|
58
58
|
const mdiCodeParentheses = require("./components/icons/mdi-code-parentheses.qwik.cjs");
|
|
59
59
|
const mdiCodeTags = require("./components/icons/mdi-code-tags.qwik.cjs");
|
|
60
60
|
const mdiCodeTagsCheck = require("./components/icons/mdi-code-tags-check.qwik.cjs");
|
|
61
|
+
const mdiConnection = require("./components/icons/mdi-connection.qwik.cjs");
|
|
61
62
|
const mdiContact = require("./components/icons/mdi-contact.qwik.cjs");
|
|
62
63
|
const mdiContactOutline = require("./components/icons/mdi-contact-outline.qwik.cjs");
|
|
63
64
|
const mdiContacts = require("./components/icons/mdi-contacts.qwik.cjs");
|
|
@@ -73,12 +74,19 @@ const mdiDeleteOutline = require("./components/icons/mdi-delete-outline.qwik.cjs
|
|
|
73
74
|
const mdiDevTo = require("./components/icons/mdi-dev-to.qwik.cjs");
|
|
74
75
|
const mdiDollar = require("./components/icons/mdi-dollar.qwik.cjs");
|
|
75
76
|
const mdiDownload = require("./components/icons/mdi-download.qwik.cjs");
|
|
77
|
+
const mdiDriveDocument = require("./components/icons/mdi-drive-document.qwik.cjs");
|
|
76
78
|
const mdiEmail = require("./components/icons/mdi-email.qwik.cjs");
|
|
77
79
|
const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs");
|
|
78
80
|
const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
|
|
79
81
|
const mdiError = require("./components/icons/mdi-error.qwik.cjs");
|
|
80
82
|
const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
|
|
81
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");
|
|
82
90
|
const mdiGauge = require("./components/icons/mdi-gauge.qwik.cjs");
|
|
83
91
|
const mdiGearOutline = require("./components/icons/mdi-gear-outline.qwik.cjs");
|
|
84
92
|
const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
@@ -134,6 +142,7 @@ const mdiOfficeBuildingOutline = require("./components/icons/mdi-office-building
|
|
|
134
142
|
const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
|
|
135
143
|
const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
|
|
136
144
|
const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
|
|
145
|
+
const mdiPipeDisconnected = require("./components/icons/mdi-pipe-disconnected.qwik.cjs");
|
|
137
146
|
const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
|
|
138
147
|
const mdiPulse = require("./components/icons/mdi-pulse.qwik.cjs");
|
|
139
148
|
const mdiQrCode = require("./components/icons/mdi-qr-code.qwik.cjs");
|
|
@@ -318,6 +327,7 @@ exports.MdiCodeOr = mdiCodeOr.MdiCodeOr;
|
|
|
318
327
|
exports.MdiCodeParentheses = mdiCodeParentheses.MdiCodeParentheses;
|
|
319
328
|
exports.MdiCodeTags = mdiCodeTags.MdiCodeTags;
|
|
320
329
|
exports.MdiCodeTagsCheck = mdiCodeTagsCheck.MdiCodeTagsCheck;
|
|
330
|
+
exports.MdiConnection = mdiConnection.MdiConnection;
|
|
321
331
|
exports.MdiContact = mdiContact.MdiContact;
|
|
322
332
|
exports.MdiContactOutline = mdiContactOutline.MdiContactOutline;
|
|
323
333
|
exports.MdiContacts = mdiContacts.MdiContacts;
|
|
@@ -333,12 +343,19 @@ exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
|
|
|
333
343
|
exports.MdiDevTo = mdiDevTo.MdiDevTo;
|
|
334
344
|
exports.MdiDollar = mdiDollar.MdiDollar;
|
|
335
345
|
exports.MdiDownload = mdiDownload.MdiDownload;
|
|
346
|
+
exports.MdiDriveDocument = mdiDriveDocument.MdiDriveDocument;
|
|
336
347
|
exports.MdiEmail = mdiEmail.MdiEmail;
|
|
337
348
|
exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
338
349
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
339
350
|
exports.MdiError = mdiError.MdiError;
|
|
340
351
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
341
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;
|
|
342
359
|
exports.MdiGauge = mdiGauge.MdiGauge;
|
|
343
360
|
exports.MdiGearOutline = mdiGearOutline.MdiGearOutline;
|
|
344
361
|
exports.MdiGmail = mdiGmail.MdiGmail;
|
|
@@ -394,6 +411,7 @@ exports.MdiOfficeBuildingOutline = mdiOfficeBuildingOutline.MdiOfficeBuildingOut
|
|
|
394
411
|
exports.MdiPercent = mdiPercent.MdiPercent;
|
|
395
412
|
exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
|
|
396
413
|
exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
|
|
414
|
+
exports.MdiPipeDisconnected = mdiPipeDisconnected.MdiPipeDisconnected;
|
|
397
415
|
exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
|
|
398
416
|
exports.MdiPulse = mdiPulse.MdiPulse;
|
|
399
417
|
exports.MdiQrCode = mdiQrCode.MdiQrCode;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -56,6 +56,7 @@ import { MdiCodeOr } from "./components/icons/mdi-code-or.qwik.mjs";
|
|
|
56
56
|
import { MdiCodeParentheses } from "./components/icons/mdi-code-parentheses.qwik.mjs";
|
|
57
57
|
import { MdiCodeTags } from "./components/icons/mdi-code-tags.qwik.mjs";
|
|
58
58
|
import { MdiCodeTagsCheck } from "./components/icons/mdi-code-tags-check.qwik.mjs";
|
|
59
|
+
import { MdiConnection } from "./components/icons/mdi-connection.qwik.mjs";
|
|
59
60
|
import { MdiContact } from "./components/icons/mdi-contact.qwik.mjs";
|
|
60
61
|
import { MdiContactOutline } from "./components/icons/mdi-contact-outline.qwik.mjs";
|
|
61
62
|
import { MdiContacts } from "./components/icons/mdi-contacts.qwik.mjs";
|
|
@@ -71,12 +72,19 @@ import { MdiDeleteOutline } from "./components/icons/mdi-delete-outline.qwik.mjs
|
|
|
71
72
|
import { MdiDevTo } from "./components/icons/mdi-dev-to.qwik.mjs";
|
|
72
73
|
import { MdiDollar } from "./components/icons/mdi-dollar.qwik.mjs";
|
|
73
74
|
import { MdiDownload } from "./components/icons/mdi-download.qwik.mjs";
|
|
75
|
+
import { MdiDriveDocument } from "./components/icons/mdi-drive-document.qwik.mjs";
|
|
74
76
|
import { MdiEmail } from "./components/icons/mdi-email.qwik.mjs";
|
|
75
77
|
import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
|
|
76
78
|
import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
|
|
77
79
|
import { MdiError } from "./components/icons/mdi-error.qwik.mjs";
|
|
78
80
|
import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
|
|
79
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";
|
|
80
88
|
import { MdiGauge } from "./components/icons/mdi-gauge.qwik.mjs";
|
|
81
89
|
import { MdiGearOutline } from "./components/icons/mdi-gear-outline.qwik.mjs";
|
|
82
90
|
import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
@@ -132,6 +140,7 @@ import { MdiOfficeBuildingOutline } from "./components/icons/mdi-office-building
|
|
|
132
140
|
import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
|
|
133
141
|
import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
|
|
134
142
|
import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
|
|
143
|
+
import { MdiPipeDisconnected } from "./components/icons/mdi-pipe-disconnected.qwik.mjs";
|
|
135
144
|
import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
|
|
136
145
|
import { MdiPulse } from "./components/icons/mdi-pulse.qwik.mjs";
|
|
137
146
|
import { MdiQrCode } from "./components/icons/mdi-qr-code.qwik.mjs";
|
|
@@ -370,6 +379,7 @@ export {
|
|
|
370
379
|
MdiCodeParentheses,
|
|
371
380
|
MdiCodeTags,
|
|
372
381
|
MdiCodeTagsCheck,
|
|
382
|
+
MdiConnection,
|
|
373
383
|
MdiContact,
|
|
374
384
|
MdiContactOutline,
|
|
375
385
|
MdiContacts,
|
|
@@ -385,12 +395,19 @@ export {
|
|
|
385
395
|
MdiDevTo,
|
|
386
396
|
MdiDollar,
|
|
387
397
|
MdiDownload,
|
|
398
|
+
MdiDriveDocument,
|
|
388
399
|
MdiEmail,
|
|
389
400
|
MdiEmailOutline,
|
|
390
401
|
MdiEmoticonDevil,
|
|
391
402
|
MdiError,
|
|
392
403
|
MdiErrorOutline,
|
|
393
404
|
MdiFeatureHighlight,
|
|
405
|
+
MdiFileDocumentBox,
|
|
406
|
+
MdiFileDocumentBoxMultiple,
|
|
407
|
+
MdiFileDocumentBoxMultipleOutline,
|
|
408
|
+
MdiFileDocumentBoxOutline,
|
|
409
|
+
MdiFileDocumentMultiple,
|
|
410
|
+
MdiFileDocumentMultipleOutline,
|
|
394
411
|
MdiGauge,
|
|
395
412
|
MdiGearOutline,
|
|
396
413
|
MdiGmail,
|
|
@@ -446,6 +463,7 @@ export {
|
|
|
446
463
|
MdiPercent,
|
|
447
464
|
MdiPersonCheck,
|
|
448
465
|
MdiPersonCheckOutline,
|
|
466
|
+
MdiPipeDisconnected,
|
|
449
467
|
MdiPlusBoxOutline,
|
|
450
468
|
MdiPulse,
|
|
451
469
|
MdiQrCode,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export * from './components/icons/mdi-code-or';
|
|
|
56
56
|
export * from './components/icons/mdi-code-parentheses';
|
|
57
57
|
export * from './components/icons/mdi-code-tags';
|
|
58
58
|
export * from './components/icons/mdi-code-tags-check';
|
|
59
|
+
export * from './components/icons/mdi-connection';
|
|
59
60
|
export * from './components/icons/mdi-contact';
|
|
60
61
|
export * from './components/icons/mdi-contact-outline';
|
|
61
62
|
export * from './components/icons/mdi-contacts';
|
|
@@ -71,12 +72,19 @@ export * from './components/icons/mdi-delete-outline';
|
|
|
71
72
|
export * from './components/icons/mdi-dev-to';
|
|
72
73
|
export * from './components/icons/mdi-dollar';
|
|
73
74
|
export * from './components/icons/mdi-download';
|
|
75
|
+
export * from './components/icons/mdi-drive-document';
|
|
74
76
|
export * from './components/icons/mdi-email';
|
|
75
77
|
export * from './components/icons/mdi-email-outline';
|
|
76
78
|
export * from './components/icons/mdi-emoticon-devil';
|
|
77
79
|
export * from './components/icons/mdi-error';
|
|
78
80
|
export * from './components/icons/mdi-error-outline';
|
|
79
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';
|
|
80
88
|
export * from './components/icons/mdi-gauge';
|
|
81
89
|
export * from './components/icons/mdi-gear-outline';
|
|
82
90
|
export * from './components/icons/mdi-gmail';
|
|
@@ -132,6 +140,7 @@ export * from './components/icons/mdi-office-building-outline';
|
|
|
132
140
|
export * from './components/icons/mdi-percent';
|
|
133
141
|
export * from './components/icons/mdi-person-check';
|
|
134
142
|
export * from './components/icons/mdi-person-check-outline';
|
|
143
|
+
export * from './components/icons/mdi-pipe-disconnected';
|
|
135
144
|
export * from './components/icons/mdi-plus-box-outline';
|
|
136
145
|
export * from './components/icons/mdi-pulse';
|
|
137
146
|
export * from './components/icons/mdi-qr-code';
|