@nr1e/qwik-icons 0.0.2 → 0.0.4
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-cloud-download-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-cloud-download-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-cloud-download.qwik.cjs +16 -0
- package/lib/components/icons/mdi-cloud-download.qwik.mjs +16 -0
- package/lib/components/icons/mdi-download.qwik.cjs +16 -0
- package/lib/components/icons/mdi-download.qwik.mjs +16 -0
- package/lib/components/icons/mdi-email-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-email-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-email.qwik.cjs +16 -0
- package/lib/components/icons/mdi-email.qwik.mjs +16 -0
- package/lib/components/icons/mdi-gmail.qwik.cjs +16 -0
- package/lib/components/icons/mdi-gmail.qwik.mjs +16 -0
- package/lib/components/icons/mdi-google-drive.qwik.cjs +16 -0
- package/lib/components/icons/mdi-google-drive.qwik.mjs +16 -0
- package/lib/components/icons/mdi-google.qwik.cjs +16 -0
- package/lib/components/icons/mdi-google.qwik.mjs +16 -0
- package/lib/components/icons/mdi-microsoft.qwik.cjs +16 -0
- package/lib/components/icons/mdi-microsoft.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +18 -0
- package/lib/index.qwik.mjs +18 -0
- package/lib-types/components/icons/mdi-cloud-download-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-cloud-download.d.ts +2 -0
- package/lib-types/components/icons/mdi-download.d.ts +2 -0
- package/lib-types/components/icons/mdi-email-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-email.d.ts +2 -0
- package/lib-types/components/icons/mdi-gmail.d.ts +2 -0
- package/lib-types/components/icons/mdi-google-drive.d.ts +2 -0
- package/lib-types/components/icons/mdi-google.d.ts +2 -0
- package/lib-types/components/icons/mdi-microsoft.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 MdiCloudDownloadOutline = 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.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.43-1.8 2.13-3.42Q9.07 4.1 11 4.1q.83 0 1.41.59q.59.59.59 1.41v6.05l1.6-1.55L16 12l-4 4l-4-4l1.4-1.4l1.6 1.55V6.1q-1.9.35-2.95 1.84T7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1h12q1.05 0 1.77-.73q.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-1.2-.55-2.24Q15.9 7.73 15 7V4.68q1.85.87 2.93 2.58Q19 9 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20M12 11.05"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCloudDownloadOutline = MdiCloudDownloadOutline;
|
|
@@ -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 MdiCloudDownloadOutline = 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.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.43-1.8 2.13-3.42Q9.07 4.1 11 4.1q.83 0 1.41.59q.59.59.59 1.41v6.05l1.6-1.55L16 12l-4 4l-4-4l1.4-1.4l1.6 1.55V6.1q-1.9.35-2.95 1.84T7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1h12q1.05 0 1.77-.73q.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-1.2-.55-2.24Q15.9 7.73 15 7V4.68q1.85.87 2.93 2.58Q19 9 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20M12 11.05"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCloudDownloadOutline
|
|
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 MdiCloudDownload = 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.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.58-2.02 2.14-3.4Q8.95 4.38 11 4.08v8.07L9.4 10.6L8 12l4 4l4-4l-1.4-1.4l-1.6 1.55V4.08q2.58.35 4.29 2.31T19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20Z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCloudDownload = MdiCloudDownload;
|
|
@@ -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 MdiCloudDownload = 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.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.58-2.02 2.14-3.4Q8.95 4.38 11 4.08v8.07L9.4 10.6L8 12l4 4l4-4l-1.4-1.4l-1.6 1.55V4.08q2.58.35 4.29 2.31T19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20Z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCloudDownload
|
|
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 MdiDownload = 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 20h14v-2H5m14-9h-4V3H9v6H5l7 7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiDownload = MdiDownload;
|
|
@@ -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 MdiDownload = 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 20h14v-2H5m14-9h-4V3H9v6H5l7 7z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiDownload
|
|
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 MdiEmailOutline = 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: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zm-2 0l-8 5l-8-5zm0 12H4V8l8 5l8-5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEmailOutline = MdiEmailOutline;
|
|
@@ -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 MdiEmailOutline = 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: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zm-2 0l-8 5l-8-5zm0 12H4V8l8 5l8-5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEmailOutline
|
|
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 MdiEmail = 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: "m20 8l-8 5l-8-5V6l8 5l8-5m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEmail = MdiEmail;
|
|
@@ -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 MdiEmail = 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: "m20 8l-8 5l-8-5V6l8 5l8-5m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEmail
|
|
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 MdiGmail = 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: "M20 18h-2V9.25L12 13L6 9.25V18H4V6h1.2l6.8 4.25L18.8 6H20m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiGmail = MdiGmail;
|
|
@@ -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 MdiGmail = 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: "M20 18h-2V9.25L12 13L6 9.25V18H4V6h1.2l6.8 4.25L18.8 6H20m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiGmail
|
|
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 MdiGoogleDrive = 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.71 3.5L1.15 15l3.43 6l6.55-11.5M9.73 15L6.3 21h13.12l3.43-6m-.57-1L15.42 2H8.57l6.86 12z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiGoogleDrive = MdiGoogleDrive;
|
|
@@ -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 MdiGoogleDrive = 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.71 3.5L1.15 15l3.43 6l6.55-11.5M9.73 15L6.3 21h13.12l3.43-6m-.57-1L15.42 2H8.57l6.86 12z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiGoogleDrive
|
|
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 MdiGoogle = 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.35 11.1h-9.17v2.73h6.51c-.33 3.81-3.5 5.44-6.5 5.44C8.36 19.27 5 16.25 5 12c0-4.1 3.2-7.27 7.2-7.27c3.09 0 4.9 1.97 4.9 1.97L19 4.72S16.56 2 12.1 2C6.42 2 2.03 6.8 2.03 12c0 5.05 4.13 10 10.22 10c5.35 0 9.25-3.67 9.25-9.09c0-1.15-.15-1.81-.15-1.81"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiGoogle = MdiGoogle;
|
|
@@ -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 MdiGoogle = 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.35 11.1h-9.17v2.73h6.51c-.33 3.81-3.5 5.44-6.5 5.44C8.36 19.27 5 16.25 5 12c0-4.1 3.2-7.27 7.2-7.27c3.09 0 4.9 1.97 4.9 1.97L19 4.72S16.56 2 12.1 2C6.42 2 2.03 6.8 2.03 12c0 5.05 4.13 10 10.22 10c5.35 0 9.25-3.67 9.25-9.09c0-1.15-.15-1.81-.15-1.81"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiGoogle
|
|
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 MdiMicrosoft = 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 3h9v9H2zm9 19H2v-9h9zM21 3v9h-9V3zm0 19h-9v-9h9z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiMicrosoft = MdiMicrosoft;
|
|
@@ -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 MdiMicrosoft = 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 3h9v9H2zm9 19H2v-9h9zM21 3v9h-9V3zm0 19h-9v-9h9z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiMicrosoft
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -13,6 +13,8 @@ const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outli
|
|
|
13
13
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
14
14
|
const mdiChevronUp = require("./components/icons/mdi-chevron-up.qwik.cjs");
|
|
15
15
|
const mdiClose = require("./components/icons/mdi-close.qwik.cjs");
|
|
16
|
+
const mdiCloudDownload = require("./components/icons/mdi-cloud-download.qwik.cjs");
|
|
17
|
+
const mdiCloudDownloadOutline = require("./components/icons/mdi-cloud-download-outline.qwik.cjs");
|
|
16
18
|
const mdiCloudLockOutline = require("./components/icons/mdi-cloud-lock-outline.qwik.cjs");
|
|
17
19
|
const mdiContentCopy = require("./components/icons/mdi-content-copy.qwik.cjs");
|
|
18
20
|
const mdiCreditCardOutline = require("./components/icons/mdi-credit-card-outline.qwik.cjs");
|
|
@@ -20,9 +22,15 @@ const mdiDangerous = require("./components/icons/mdi-dangerous.qwik.cjs");
|
|
|
20
22
|
const mdiDeleteOutline = require("./components/icons/mdi-delete-outline.qwik.cjs");
|
|
21
23
|
const mdiDevTo = require("./components/icons/mdi-dev-to.qwik.cjs");
|
|
22
24
|
const mdiDollar = require("./components/icons/mdi-dollar.qwik.cjs");
|
|
25
|
+
const mdiDownload = require("./components/icons/mdi-download.qwik.cjs");
|
|
26
|
+
const mdiEmail = require("./components/icons/mdi-email.qwik.cjs");
|
|
27
|
+
const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs");
|
|
23
28
|
const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
|
|
24
29
|
const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
|
|
25
30
|
const mdiGearOutline = require("./components/icons/mdi-gear-outline.qwik.cjs");
|
|
31
|
+
const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
32
|
+
const mdiGoogle = require("./components/icons/mdi-google.qwik.cjs");
|
|
33
|
+
const mdiGoogleDrive = require("./components/icons/mdi-google-drive.qwik.cjs");
|
|
26
34
|
const mdiHamburgerMenu = require("./components/icons/mdi-hamburger-menu.qwik.cjs");
|
|
27
35
|
const mdiInformationSlabBox = require("./components/icons/mdi-information-slab-box.qwik.cjs");
|
|
28
36
|
const mdiInformationSlabBoxOutline = require("./components/icons/mdi-information-slab-box-outline.qwik.cjs");
|
|
@@ -35,6 +43,7 @@ const mdiLinkVariant = require("./components/icons/mdi-link-variant.qwik.cjs");
|
|
|
35
43
|
const mdiLock = require("./components/icons/mdi-lock.qwik.cjs");
|
|
36
44
|
const mdiLogin = require("./components/icons/mdi-login.qwik.cjs");
|
|
37
45
|
const mdiLogout = require("./components/icons/mdi-logout.qwik.cjs");
|
|
46
|
+
const mdiMicrosoft = require("./components/icons/mdi-microsoft.qwik.cjs");
|
|
38
47
|
const mdiNavigateBefore = require("./components/icons/mdi-navigate-before.qwik.cjs");
|
|
39
48
|
const mdiNavigateNext = require("./components/icons/mdi-navigate-next.qwik.cjs");
|
|
40
49
|
const mdiNetworkOutline = require("./components/icons/mdi-network-outline.qwik.cjs");
|
|
@@ -63,6 +72,8 @@ exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
|
63
72
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
|
64
73
|
exports.MdiChevronUp = mdiChevronUp.MdiChevronUp;
|
|
65
74
|
exports.MdiClose = mdiClose.MdiClose;
|
|
75
|
+
exports.MdiCloudDownload = mdiCloudDownload.MdiCloudDownload;
|
|
76
|
+
exports.MdiCloudDownloadOutline = mdiCloudDownloadOutline.MdiCloudDownloadOutline;
|
|
66
77
|
exports.MdiCloudLockOutline = mdiCloudLockOutline.MdiCloudLockOutline;
|
|
67
78
|
exports.MdiContentCopy = mdiContentCopy.MdiContentCopy;
|
|
68
79
|
exports.MdiCreditCardOutline = mdiCreditCardOutline.MdiCreditCardOutline;
|
|
@@ -70,9 +81,15 @@ exports.MdiDangerous = mdiDangerous.MdiDangerous;
|
|
|
70
81
|
exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
|
|
71
82
|
exports.MdiDevTo = mdiDevTo.MdiDevTo;
|
|
72
83
|
exports.MdiDollar = mdiDollar.MdiDollar;
|
|
84
|
+
exports.MdiDownload = mdiDownload.MdiDownload;
|
|
85
|
+
exports.MdiEmail = mdiEmail.MdiEmail;
|
|
86
|
+
exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
73
87
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
74
88
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
75
89
|
exports.MdiGearOutline = mdiGearOutline.MdiGearOutline;
|
|
90
|
+
exports.MdiGmail = mdiGmail.MdiGmail;
|
|
91
|
+
exports.MdiGoogle = mdiGoogle.MdiGoogle;
|
|
92
|
+
exports.MdiGoogleDrive = mdiGoogleDrive.MdiGoogleDrive;
|
|
76
93
|
exports.MdiHamburgerMenu = mdiHamburgerMenu.MdiHamburgerMenu;
|
|
77
94
|
exports.MdiInformationSlabBox = mdiInformationSlabBox.MdiInformationSlabBox;
|
|
78
95
|
exports.MdiInformationSlabBoxOutline = mdiInformationSlabBoxOutline.MdiInformationSlabBoxOutline;
|
|
@@ -85,6 +102,7 @@ exports.MdiLinkVariant = mdiLinkVariant.MdiLinkVariant;
|
|
|
85
102
|
exports.MdiLock = mdiLock.MdiLock;
|
|
86
103
|
exports.MdiLogin = mdiLogin.MdiLogin;
|
|
87
104
|
exports.MdiLogout = mdiLogout.MdiLogout;
|
|
105
|
+
exports.MdiMicrosoft = mdiMicrosoft.MdiMicrosoft;
|
|
88
106
|
exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
|
|
89
107
|
exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
|
|
90
108
|
exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -11,6 +11,8 @@ import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outli
|
|
|
11
11
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
12
12
|
import { MdiChevronUp } from "./components/icons/mdi-chevron-up.qwik.mjs";
|
|
13
13
|
import { MdiClose } from "./components/icons/mdi-close.qwik.mjs";
|
|
14
|
+
import { MdiCloudDownload } from "./components/icons/mdi-cloud-download.qwik.mjs";
|
|
15
|
+
import { MdiCloudDownloadOutline } from "./components/icons/mdi-cloud-download-outline.qwik.mjs";
|
|
14
16
|
import { MdiCloudLockOutline } from "./components/icons/mdi-cloud-lock-outline.qwik.mjs";
|
|
15
17
|
import { MdiContentCopy } from "./components/icons/mdi-content-copy.qwik.mjs";
|
|
16
18
|
import { MdiCreditCardOutline } from "./components/icons/mdi-credit-card-outline.qwik.mjs";
|
|
@@ -18,9 +20,15 @@ import { MdiDangerous } from "./components/icons/mdi-dangerous.qwik.mjs";
|
|
|
18
20
|
import { MdiDeleteOutline } from "./components/icons/mdi-delete-outline.qwik.mjs";
|
|
19
21
|
import { MdiDevTo } from "./components/icons/mdi-dev-to.qwik.mjs";
|
|
20
22
|
import { MdiDollar } from "./components/icons/mdi-dollar.qwik.mjs";
|
|
23
|
+
import { MdiDownload } from "./components/icons/mdi-download.qwik.mjs";
|
|
24
|
+
import { MdiEmail } from "./components/icons/mdi-email.qwik.mjs";
|
|
25
|
+
import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
|
|
21
26
|
import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
|
|
22
27
|
import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
|
|
23
28
|
import { MdiGearOutline } from "./components/icons/mdi-gear-outline.qwik.mjs";
|
|
29
|
+
import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
30
|
+
import { MdiGoogle } from "./components/icons/mdi-google.qwik.mjs";
|
|
31
|
+
import { MdiGoogleDrive } from "./components/icons/mdi-google-drive.qwik.mjs";
|
|
24
32
|
import { MdiHamburgerMenu } from "./components/icons/mdi-hamburger-menu.qwik.mjs";
|
|
25
33
|
import { MdiInformationSlabBox } from "./components/icons/mdi-information-slab-box.qwik.mjs";
|
|
26
34
|
import { MdiInformationSlabBoxOutline } from "./components/icons/mdi-information-slab-box-outline.qwik.mjs";
|
|
@@ -33,6 +41,7 @@ import { MdiLinkVariant } from "./components/icons/mdi-link-variant.qwik.mjs";
|
|
|
33
41
|
import { MdiLock } from "./components/icons/mdi-lock.qwik.mjs";
|
|
34
42
|
import { MdiLogin } from "./components/icons/mdi-login.qwik.mjs";
|
|
35
43
|
import { MdiLogout } from "./components/icons/mdi-logout.qwik.mjs";
|
|
44
|
+
import { MdiMicrosoft } from "./components/icons/mdi-microsoft.qwik.mjs";
|
|
36
45
|
import { MdiNavigateBefore } from "./components/icons/mdi-navigate-before.qwik.mjs";
|
|
37
46
|
import { MdiNavigateNext } from "./components/icons/mdi-navigate-next.qwik.mjs";
|
|
38
47
|
import { MdiNetworkOutline } from "./components/icons/mdi-network-outline.qwik.mjs";
|
|
@@ -61,6 +70,8 @@ export {
|
|
|
61
70
|
MdiChevronDown,
|
|
62
71
|
MdiChevronUp,
|
|
63
72
|
MdiClose,
|
|
73
|
+
MdiCloudDownload,
|
|
74
|
+
MdiCloudDownloadOutline,
|
|
64
75
|
MdiCloudLockOutline,
|
|
65
76
|
MdiContentCopy,
|
|
66
77
|
MdiCreditCardOutline,
|
|
@@ -68,9 +79,15 @@ export {
|
|
|
68
79
|
MdiDeleteOutline,
|
|
69
80
|
MdiDevTo,
|
|
70
81
|
MdiDollar,
|
|
82
|
+
MdiDownload,
|
|
83
|
+
MdiEmail,
|
|
84
|
+
MdiEmailOutline,
|
|
71
85
|
MdiEmoticonDevil,
|
|
72
86
|
MdiErrorOutline,
|
|
73
87
|
MdiGearOutline,
|
|
88
|
+
MdiGmail,
|
|
89
|
+
MdiGoogle,
|
|
90
|
+
MdiGoogleDrive,
|
|
74
91
|
MdiHamburgerMenu,
|
|
75
92
|
MdiInformationSlabBox,
|
|
76
93
|
MdiInformationSlabBoxOutline,
|
|
@@ -83,6 +100,7 @@ export {
|
|
|
83
100
|
MdiLock,
|
|
84
101
|
MdiLogin,
|
|
85
102
|
MdiLogout,
|
|
103
|
+
MdiMicrosoft,
|
|
86
104
|
MdiNavigateBefore,
|
|
87
105
|
MdiNavigateNext,
|
|
88
106
|
MdiNetworkOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export * from './components/icons/mdi-check-circle-outline';
|
|
|
11
11
|
export * from './components/icons/mdi-chevron-down';
|
|
12
12
|
export * from './components/icons/mdi-chevron-up';
|
|
13
13
|
export * from './components/icons/mdi-close';
|
|
14
|
+
export * from './components/icons/mdi-cloud-download';
|
|
15
|
+
export * from './components/icons/mdi-cloud-download-outline';
|
|
14
16
|
export * from './components/icons/mdi-cloud-lock-outline';
|
|
15
17
|
export * from './components/icons/mdi-content-copy';
|
|
16
18
|
export * from './components/icons/mdi-credit-card-outline';
|
|
@@ -18,9 +20,15 @@ export * from './components/icons/mdi-dangerous';
|
|
|
18
20
|
export * from './components/icons/mdi-delete-outline';
|
|
19
21
|
export * from './components/icons/mdi-dev-to';
|
|
20
22
|
export * from './components/icons/mdi-dollar';
|
|
23
|
+
export * from './components/icons/mdi-download';
|
|
24
|
+
export * from './components/icons/mdi-email';
|
|
25
|
+
export * from './components/icons/mdi-email-outline';
|
|
21
26
|
export * from './components/icons/mdi-emoticon-devil';
|
|
22
27
|
export * from './components/icons/mdi-error-outline';
|
|
23
28
|
export * from './components/icons/mdi-gear-outline';
|
|
29
|
+
export * from './components/icons/mdi-gmail';
|
|
30
|
+
export * from './components/icons/mdi-google';
|
|
31
|
+
export * from './components/icons/mdi-google-drive';
|
|
24
32
|
export * from './components/icons/mdi-hamburger-menu';
|
|
25
33
|
export * from './components/icons/mdi-information-slab-box';
|
|
26
34
|
export * from './components/icons/mdi-information-slab-box-outline';
|
|
@@ -33,6 +41,7 @@ export * from './components/icons/mdi-link-variant';
|
|
|
33
41
|
export * from './components/icons/mdi-lock';
|
|
34
42
|
export * from './components/icons/mdi-login';
|
|
35
43
|
export * from './components/icons/mdi-logout';
|
|
44
|
+
export * from './components/icons/mdi-microsoft';
|
|
36
45
|
export * from './components/icons/mdi-navigate-before';
|
|
37
46
|
export * from './components/icons/mdi-navigate-next';
|
|
38
47
|
export * from './components/icons/mdi-network-outline';
|