@nr1e/qwik-icons 0.0.0-snapshot-20251228002721 → 0.0.0-snapshot-20251228003719
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-microsoft-github.qwik.cjs +16 -0
- package/lib/components/icons/mdi-microsoft-github.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +2 -0
- package/lib/index.qwik.mjs +2 -0
- package/lib-types/components/icons/mdi-microsoft-github.d.ts +2 -0
- package/lib-types/index.d.ts +1 -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 MdiMicrosoftGithub = 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 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiMicrosoftGithub = MdiMicrosoftGithub;
|
|
@@ -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 MdiMicrosoftGithub = 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 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiMicrosoftGithub
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -44,6 +44,7 @@ const mdiLock = require("./components/icons/mdi-lock.qwik.cjs");
|
|
|
44
44
|
const mdiLogin = require("./components/icons/mdi-login.qwik.cjs");
|
|
45
45
|
const mdiLogout = require("./components/icons/mdi-logout.qwik.cjs");
|
|
46
46
|
const mdiMicrosoft = require("./components/icons/mdi-microsoft.qwik.cjs");
|
|
47
|
+
const mdiMicrosoftGithub = require("./components/icons/mdi-microsoft-github.qwik.cjs");
|
|
47
48
|
const mdiNavigateBefore = require("./components/icons/mdi-navigate-before.qwik.cjs");
|
|
48
49
|
const mdiNavigateNext = require("./components/icons/mdi-navigate-next.qwik.cjs");
|
|
49
50
|
const mdiNetworkOutline = require("./components/icons/mdi-network-outline.qwik.cjs");
|
|
@@ -103,6 +104,7 @@ exports.MdiLock = mdiLock.MdiLock;
|
|
|
103
104
|
exports.MdiLogin = mdiLogin.MdiLogin;
|
|
104
105
|
exports.MdiLogout = mdiLogout.MdiLogout;
|
|
105
106
|
exports.MdiMicrosoft = mdiMicrosoft.MdiMicrosoft;
|
|
107
|
+
exports.MdiMicrosoftGithub = mdiMicrosoftGithub.MdiMicrosoftGithub;
|
|
106
108
|
exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
|
|
107
109
|
exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
|
|
108
110
|
exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -42,6 +42,7 @@ import { MdiLock } from "./components/icons/mdi-lock.qwik.mjs";
|
|
|
42
42
|
import { MdiLogin } from "./components/icons/mdi-login.qwik.mjs";
|
|
43
43
|
import { MdiLogout } from "./components/icons/mdi-logout.qwik.mjs";
|
|
44
44
|
import { MdiMicrosoft } from "./components/icons/mdi-microsoft.qwik.mjs";
|
|
45
|
+
import { MdiMicrosoftGithub } from "./components/icons/mdi-microsoft-github.qwik.mjs";
|
|
45
46
|
import { MdiNavigateBefore } from "./components/icons/mdi-navigate-before.qwik.mjs";
|
|
46
47
|
import { MdiNavigateNext } from "./components/icons/mdi-navigate-next.qwik.mjs";
|
|
47
48
|
import { MdiNetworkOutline } from "./components/icons/mdi-network-outline.qwik.mjs";
|
|
@@ -101,6 +102,7 @@ export {
|
|
|
101
102
|
MdiLogin,
|
|
102
103
|
MdiLogout,
|
|
103
104
|
MdiMicrosoft,
|
|
105
|
+
MdiMicrosoftGithub,
|
|
104
106
|
MdiNavigateBefore,
|
|
105
107
|
MdiNavigateNext,
|
|
106
108
|
MdiNetworkOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export * from './components/icons/mdi-lock';
|
|
|
42
42
|
export * from './components/icons/mdi-login';
|
|
43
43
|
export * from './components/icons/mdi-logout';
|
|
44
44
|
export * from './components/icons/mdi-microsoft';
|
|
45
|
+
export * from './components/icons/mdi-microsoft-github';
|
|
45
46
|
export * from './components/icons/mdi-navigate-before';
|
|
46
47
|
export * from './components/icons/mdi-navigate-next';
|
|
47
48
|
export * from './components/icons/mdi-network-outline';
|