@nr1e/qwik-icons 0.0.13 → 0.0.15
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-contact-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-contact-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-contact.qwik.cjs +16 -0
- package/lib/components/icons/mdi-contact.qwik.mjs +16 -0
- package/lib/components/icons/mdi-contacts-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-contacts-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-contacts.qwik.cjs +16 -0
- package/lib/components/icons/mdi-contacts.qwik.mjs +16 -0
- package/lib/components/icons/mdi-crown-circle-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-crown-circle-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-crown-circle.qwik.cjs +16 -0
- package/lib/components/icons/mdi-crown-circle.qwik.mjs +16 -0
- package/lib/components/icons/mdi-crown-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-crown-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-crown.qwik.cjs +16 -0
- package/lib/components/icons/mdi-crown.qwik.mjs +16 -0
- package/lib/components/icons/mdi-instant-mix.qwik.cjs +16 -0
- package/lib/components/icons/mdi-instant-mix.qwik.mjs +16 -0
- package/lib/components/icons/mdi-mixer-settings.qwik.cjs +16 -0
- package/lib/components/icons/mdi-mixer-settings.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-crown-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-crown-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-crown.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-crown.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +24 -0
- package/lib/index.qwik.mjs +24 -0
- package/lib-types/components/icons/mdi-contact-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-contact.d.ts +2 -0
- package/lib-types/components/icons/mdi-contacts-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-contacts.d.ts +2 -0
- package/lib-types/components/icons/mdi-crown-circle-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-crown-circle.d.ts +2 -0
- package/lib-types/components/icons/mdi-crown-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-crown.d.ts +2 -0
- package/lib-types/components/icons/mdi-instant-mix.d.ts +2 -0
- package/lib-types/components/icons/mdi-mixer-settings.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-crown-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-crown.d.ts +2 -0
- package/lib-types/index.d.ts +12 -0
- package/package.json +14 -14
|
@@ -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 MdiContactOutline = 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: "M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2.5 13.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9M12 12.25A2.25 2.25 0 0 0 14.25 10A2.25 2.25 0 0 0 12 7.75A2.25 2.25 0 0 0 9.75 10A2.25 2.25 0 0 0 12 12.25"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiContactOutline = MdiContactOutline;
|
|
@@ -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 MdiContactOutline = 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: "M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2.5 13.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9M12 12.25A2.25 2.25 0 0 0 14.25 10A2.25 2.25 0 0 0 12 7.75A2.25 2.25 0 0 0 9.75 10A2.25 2.25 0 0 0 12 12.25"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiContactOutline
|
|
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 MdiContact = 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 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6m9-9a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3a3 3 0 0 1 3 3M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiContact = MdiContact;
|
|
@@ -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 MdiContact = 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 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6m9-9a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3a3 3 0 0 1 3 3M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiContact
|
|
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 MdiContactsOutline = 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 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16zM4 0h16v2H4m0 20h16v2H4m8-12a2.5 2.5 0 0 0 0-5a2.5 2.5 0 0 0 0 5m0-3.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m5 7.5c0-2.1-3.31-3-5-3s-5 .9-5 3v1h10zm-8.19-.5c.61-.5 2.03-1 3.19-1c1.17 0 2.59.5 3.2 1z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiContactsOutline = MdiContactsOutline;
|
|
@@ -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 MdiContactsOutline = 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 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16zM4 0h16v2H4m0 20h16v2H4m8-12a2.5 2.5 0 0 0 0-5a2.5 2.5 0 0 0 0 5m0-3.5c.55 0 1 .45 1 1s-.45 1-1 1s-1-.45-1-1s.45-1 1-1m5 7.5c0-2.1-3.31-3-5-3s-5 .9-5 3v1h10zm-8.19-.5c.61-.5 2.03-1 3.19-1c1.17 0 2.59.5 3.2 1z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiContactsOutline
|
|
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 MdiContacts = 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 0H4v2h16zM4 24h16v-2H4zM20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-8 2.75A2.25 2.25 0 0 1 14.25 9A2.25 2.25 0 0 1 12 11.25A2.25 2.25 0 0 1 9.75 9A2.25 2.25 0 0 1 12 6.75M17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiContacts = MdiContacts;
|
|
@@ -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 MdiContacts = 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 0H4v2h16zM4 24h16v-2H4zM20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-8 2.75A2.25 2.25 0 0 1 14.25 9A2.25 2.25 0 0 1 12 11.25A2.25 2.25 0 0 1 9.75 9A2.25 2.25 0 0 1 12 6.75M17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiContacts
|
|
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 MdiCrownCircleOutline = 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 2C6.47 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8m-4-6L7 8l3 2l2-3l2 3l3-2l-1 6zm.56 2c-.34 0-.56-.22-.56-.56V15h8v.44c0 .34-.22.56-.56.56z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCrownCircleOutline = MdiCrownCircleOutline;
|
|
@@ -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 MdiCrownCircleOutline = 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 2C6.47 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8m-4-6L7 8l3 2l2-3l2 3l3-2l-1 6zm.56 2c-.34 0-.56-.22-.56-.56V15h8v.44c0 .34-.22.56-.56.56z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCrownCircleOutline
|
|
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 MdiCrownCircle = 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 2C6.47 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2m4 13.44c0 .34-.22.56-.56.56H8.56c-.34 0-.56-.22-.56-.56V15h8zM16 14H8L7 8l3 2l2-3l2 3l3-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCrownCircle = MdiCrownCircle;
|
|
@@ -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 MdiCrownCircle = 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 2C6.47 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2m4 13.44c0 .34-.22.56-.56.56H8.56c-.34 0-.56-.22-.56-.56V15h8zM16 14H8L7 8l3 2l2-3l2 3l3-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCrownCircle
|
|
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 MdiCrownOutline = 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 8l3 5.2l3-2.7l-.7 3.5H6.7L6 10.5l3 2.7zm0-4l-3.5 6L3 5l2 11h14l2-11l-5.5 5zm7 14H5v1c0 .6.4 1 1 1h12c.6 0 1-.4 1-1z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCrownOutline = MdiCrownOutline;
|
|
@@ -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 MdiCrownOutline = 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 8l3 5.2l3-2.7l-.7 3.5H6.7L6 10.5l3 2.7zm0-4l-3.5 6L3 5l2 11h14l2-11l-5.5 5zm7 14H5v1c0 .6.4 1 1 1h12c.6 0 1-.4 1-1z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCrownOutline
|
|
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 MdiCrown = 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 16L3 5l5.5 5L12 4l3.5 6L21 5l-2 11zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCrown = MdiCrown;
|
|
@@ -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 MdiCrown = 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 16L3 5l5.5 5L12 4l3.5 6L21 5l-2 11zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCrown
|
|
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 MdiInstantMix = 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 3H5v6h2zm12 0h-2v10h2zM3 13h2v8h2v-8h2v-2H3zm12-6h-2V3h-2v4H9v2h6zm-4 14h2V11h-2zm4-6v2h2v4h2v-4h2v-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInstantMix = MdiInstantMix;
|
|
@@ -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 MdiInstantMix = 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 3H5v6h2zm12 0h-2v10h2zM3 13h2v8h2v-8h2v-2H3zm12-6h-2V3h-2v4H9v2h6zm-4 14h2V11h-2zm4-6v2h2v4h2v-4h2v-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInstantMix
|
|
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 MdiMixerSettings = 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 17v2h6v-2zM3 5v2h10V5zm10 16v-2h8v-2h-8v-2h-2v6zM7 9v2H3v2h4v2h2V9zm14 4v-2H11v2zm-6-4h2V7h4V5h-4V3h-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiMixerSettings = MdiMixerSettings;
|
|
@@ -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 MdiMixerSettings = 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 17v2h6v-2zM3 5v2h10V5zm10 16v-2h8v-2h-8v-2h-2v6zM7 9v2H3v2h4v2h2V9zm14 4v-2H11v2zm-6-4h2V7h4V5h-4V3h-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiMixerSettings
|
|
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 MdiShieldCrownOutline = 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 1l9 4v6c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5zm0 2.18L5 6.3v4.92C5 15.54 8.25 20 12 21c3.75-1 7-5.46 7-9.78V6.3zM16 14v1.59c-.04.22-.22.37-.47.41H8.47c-.25-.04-.43-.19-.47-.41V14zm1-6l-1 5H8L7 8l2.67 2.67L12 8.34l2.33 2.33z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldCrownOutline = MdiShieldCrownOutline;
|
|
@@ -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 MdiShieldCrownOutline = 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 1l9 4v6c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5zm0 2.18L5 6.3v4.92C5 15.54 8.25 20 12 21c3.75-1 7-5.46 7-9.78V6.3zM16 14v1.59c-.04.22-.22.37-.47.41H8.47c-.25-.04-.43-.19-.47-.41V14zm1-6l-1 5H8L7 8l2.67 2.67L12 8.34l2.33 2.33z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldCrownOutline
|
|
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 MdiShieldCrown = 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 1l9 4v6c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5zm4 13H8v1.5c0 .27.19.46.47.5h6.96c.31 0 .52-.16.57-.41zm1-6l-2.67 2.67L12 8.34l-2.33 2.33L7 8l1 5h8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldCrown = MdiShieldCrown;
|
|
@@ -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 MdiShieldCrown = 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 1l9 4v6c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5zm4 13H8v1.5c0 .27.19.46.47.5h6.96c.31 0 .52-.16.57-.41zm1-6l-2.67 2.67L12 8.34l-2.33 2.33L7 8l1 5h8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldCrown
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -29,8 +29,16 @@ const mdiClose = require("./components/icons/mdi-close.qwik.cjs");
|
|
|
29
29
|
const mdiCloudDownload = require("./components/icons/mdi-cloud-download.qwik.cjs");
|
|
30
30
|
const mdiCloudDownloadOutline = require("./components/icons/mdi-cloud-download-outline.qwik.cjs");
|
|
31
31
|
const mdiCloudLockOutline = require("./components/icons/mdi-cloud-lock-outline.qwik.cjs");
|
|
32
|
+
const mdiContact = require("./components/icons/mdi-contact.qwik.cjs");
|
|
33
|
+
const mdiContactOutline = require("./components/icons/mdi-contact-outline.qwik.cjs");
|
|
34
|
+
const mdiContacts = require("./components/icons/mdi-contacts.qwik.cjs");
|
|
35
|
+
const mdiContactsOutline = require("./components/icons/mdi-contacts-outline.qwik.cjs");
|
|
32
36
|
const mdiContentCopy = require("./components/icons/mdi-content-copy.qwik.cjs");
|
|
33
37
|
const mdiCreditCardOutline = require("./components/icons/mdi-credit-card-outline.qwik.cjs");
|
|
38
|
+
const mdiCrown = require("./components/icons/mdi-crown.qwik.cjs");
|
|
39
|
+
const mdiCrownCircle = require("./components/icons/mdi-crown-circle.qwik.cjs");
|
|
40
|
+
const mdiCrownCircleOutline = require("./components/icons/mdi-crown-circle-outline.qwik.cjs");
|
|
41
|
+
const mdiCrownOutline = require("./components/icons/mdi-crown-outline.qwik.cjs");
|
|
34
42
|
const mdiDangerous = require("./components/icons/mdi-dangerous.qwik.cjs");
|
|
35
43
|
const mdiDeleteOutline = require("./components/icons/mdi-delete-outline.qwik.cjs");
|
|
36
44
|
const mdiDevTo = require("./components/icons/mdi-dev-to.qwik.cjs");
|
|
@@ -58,6 +66,7 @@ const mdiInformationVariantBox = require("./components/icons/mdi-information-var
|
|
|
58
66
|
const mdiInformationVariantBoxOutline = require("./components/icons/mdi-information-variant-box-outline.qwik.cjs");
|
|
59
67
|
const mdiInformationVariantCircle = require("./components/icons/mdi-information-variant-circle.qwik.cjs");
|
|
60
68
|
const mdiInformationVariantCircleOutline = require("./components/icons/mdi-information-variant-circle-outline.qwik.cjs");
|
|
69
|
+
const mdiInstantMix = require("./components/icons/mdi-instant-mix.qwik.cjs");
|
|
61
70
|
const mdiInvite = require("./components/icons/mdi-invite.qwik.cjs");
|
|
62
71
|
const mdiInvoiceTextEditOutline = require("./components/icons/mdi-invoice-text-edit-outline.qwik.cjs");
|
|
63
72
|
const mdiKeyVariant = require("./components/icons/mdi-key-variant.qwik.cjs");
|
|
@@ -68,6 +77,7 @@ const mdiLogin = require("./components/icons/mdi-login.qwik.cjs");
|
|
|
68
77
|
const mdiLogout = require("./components/icons/mdi-logout.qwik.cjs");
|
|
69
78
|
const mdiMicrosoft = require("./components/icons/mdi-microsoft.qwik.cjs");
|
|
70
79
|
const mdiMicrosoftGithub = require("./components/icons/mdi-microsoft-github.qwik.cjs");
|
|
80
|
+
const mdiMixerSettings = require("./components/icons/mdi-mixer-settings.qwik.cjs");
|
|
71
81
|
const mdiNavigateBefore = require("./components/icons/mdi-navigate-before.qwik.cjs");
|
|
72
82
|
const mdiNavigateNext = require("./components/icons/mdi-navigate-next.qwik.cjs");
|
|
73
83
|
const mdiNetworkOutline = require("./components/icons/mdi-network-outline.qwik.cjs");
|
|
@@ -79,6 +89,8 @@ const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.
|
|
|
79
89
|
const mdiRefresh = require("./components/icons/mdi-refresh.qwik.cjs");
|
|
80
90
|
const mdiSearch = require("./components/icons/mdi-search.qwik.cjs");
|
|
81
91
|
const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs");
|
|
92
|
+
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
93
|
+
const mdiShieldCrownOutline = require("./components/icons/mdi-shield-crown-outline.qwik.cjs");
|
|
82
94
|
const mdiUser = require("./components/icons/mdi-user.qwik.cjs");
|
|
83
95
|
const mdiUserOutline = require("./components/icons/mdi-user-outline.qwik.cjs");
|
|
84
96
|
const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs");
|
|
@@ -148,8 +160,16 @@ exports.MdiClose = mdiClose.MdiClose;
|
|
|
148
160
|
exports.MdiCloudDownload = mdiCloudDownload.MdiCloudDownload;
|
|
149
161
|
exports.MdiCloudDownloadOutline = mdiCloudDownloadOutline.MdiCloudDownloadOutline;
|
|
150
162
|
exports.MdiCloudLockOutline = mdiCloudLockOutline.MdiCloudLockOutline;
|
|
163
|
+
exports.MdiContact = mdiContact.MdiContact;
|
|
164
|
+
exports.MdiContactOutline = mdiContactOutline.MdiContactOutline;
|
|
165
|
+
exports.MdiContacts = mdiContacts.MdiContacts;
|
|
166
|
+
exports.MdiContactsOutline = mdiContactsOutline.MdiContactsOutline;
|
|
151
167
|
exports.MdiContentCopy = mdiContentCopy.MdiContentCopy;
|
|
152
168
|
exports.MdiCreditCardOutline = mdiCreditCardOutline.MdiCreditCardOutline;
|
|
169
|
+
exports.MdiCrown = mdiCrown.MdiCrown;
|
|
170
|
+
exports.MdiCrownCircle = mdiCrownCircle.MdiCrownCircle;
|
|
171
|
+
exports.MdiCrownCircleOutline = mdiCrownCircleOutline.MdiCrownCircleOutline;
|
|
172
|
+
exports.MdiCrownOutline = mdiCrownOutline.MdiCrownOutline;
|
|
153
173
|
exports.MdiDangerous = mdiDangerous.MdiDangerous;
|
|
154
174
|
exports.MdiDeleteOutline = mdiDeleteOutline.MdiDeleteOutline;
|
|
155
175
|
exports.MdiDevTo = mdiDevTo.MdiDevTo;
|
|
@@ -177,6 +197,7 @@ exports.MdiInformationVariantBox = mdiInformationVariantBox.MdiInformationVarian
|
|
|
177
197
|
exports.MdiInformationVariantBoxOutline = mdiInformationVariantBoxOutline.MdiInformationVariantBoxOutline;
|
|
178
198
|
exports.MdiInformationVariantCircle = mdiInformationVariantCircle.MdiInformationVariantCircle;
|
|
179
199
|
exports.MdiInformationVariantCircleOutline = mdiInformationVariantCircleOutline.MdiInformationVariantCircleOutline;
|
|
200
|
+
exports.MdiInstantMix = mdiInstantMix.MdiInstantMix;
|
|
180
201
|
exports.MdiInvite = mdiInvite.MdiInvite;
|
|
181
202
|
exports.MdiInvoiceTextEditOutline = mdiInvoiceTextEditOutline.MdiInvoiceTextEditOutline;
|
|
182
203
|
exports.MdiKeyVariant = mdiKeyVariant.MdiKeyVariant;
|
|
@@ -187,6 +208,7 @@ exports.MdiLogin = mdiLogin.MdiLogin;
|
|
|
187
208
|
exports.MdiLogout = mdiLogout.MdiLogout;
|
|
188
209
|
exports.MdiMicrosoft = mdiMicrosoft.MdiMicrosoft;
|
|
189
210
|
exports.MdiMicrosoftGithub = mdiMicrosoftGithub.MdiMicrosoftGithub;
|
|
211
|
+
exports.MdiMixerSettings = mdiMixerSettings.MdiMixerSettings;
|
|
190
212
|
exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
|
|
191
213
|
exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
|
|
192
214
|
exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
|
|
@@ -198,6 +220,8 @@ exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
|
|
|
198
220
|
exports.MdiRefresh = mdiRefresh.MdiRefresh;
|
|
199
221
|
exports.MdiSearch = mdiSearch.MdiSearch;
|
|
200
222
|
exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
223
|
+
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
|
224
|
+
exports.MdiShieldCrownOutline = mdiShieldCrownOutline.MdiShieldCrownOutline;
|
|
201
225
|
exports.MdiUser = mdiUser.MdiUser;
|
|
202
226
|
exports.MdiUserOutline = mdiUserOutline.MdiUserOutline;
|
|
203
227
|
exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -27,8 +27,16 @@ import { MdiClose } from "./components/icons/mdi-close.qwik.mjs";
|
|
|
27
27
|
import { MdiCloudDownload } from "./components/icons/mdi-cloud-download.qwik.mjs";
|
|
28
28
|
import { MdiCloudDownloadOutline } from "./components/icons/mdi-cloud-download-outline.qwik.mjs";
|
|
29
29
|
import { MdiCloudLockOutline } from "./components/icons/mdi-cloud-lock-outline.qwik.mjs";
|
|
30
|
+
import { MdiContact } from "./components/icons/mdi-contact.qwik.mjs";
|
|
31
|
+
import { MdiContactOutline } from "./components/icons/mdi-contact-outline.qwik.mjs";
|
|
32
|
+
import { MdiContacts } from "./components/icons/mdi-contacts.qwik.mjs";
|
|
33
|
+
import { MdiContactsOutline } from "./components/icons/mdi-contacts-outline.qwik.mjs";
|
|
30
34
|
import { MdiContentCopy } from "./components/icons/mdi-content-copy.qwik.mjs";
|
|
31
35
|
import { MdiCreditCardOutline } from "./components/icons/mdi-credit-card-outline.qwik.mjs";
|
|
36
|
+
import { MdiCrown } from "./components/icons/mdi-crown.qwik.mjs";
|
|
37
|
+
import { MdiCrownCircle } from "./components/icons/mdi-crown-circle.qwik.mjs";
|
|
38
|
+
import { MdiCrownCircleOutline } from "./components/icons/mdi-crown-circle-outline.qwik.mjs";
|
|
39
|
+
import { MdiCrownOutline } from "./components/icons/mdi-crown-outline.qwik.mjs";
|
|
32
40
|
import { MdiDangerous } from "./components/icons/mdi-dangerous.qwik.mjs";
|
|
33
41
|
import { MdiDeleteOutline } from "./components/icons/mdi-delete-outline.qwik.mjs";
|
|
34
42
|
import { MdiDevTo } from "./components/icons/mdi-dev-to.qwik.mjs";
|
|
@@ -56,6 +64,7 @@ import { MdiInformationVariantBox } from "./components/icons/mdi-information-var
|
|
|
56
64
|
import { MdiInformationVariantBoxOutline } from "./components/icons/mdi-information-variant-box-outline.qwik.mjs";
|
|
57
65
|
import { MdiInformationVariantCircle } from "./components/icons/mdi-information-variant-circle.qwik.mjs";
|
|
58
66
|
import { MdiInformationVariantCircleOutline } from "./components/icons/mdi-information-variant-circle-outline.qwik.mjs";
|
|
67
|
+
import { MdiInstantMix } from "./components/icons/mdi-instant-mix.qwik.mjs";
|
|
59
68
|
import { MdiInvite } from "./components/icons/mdi-invite.qwik.mjs";
|
|
60
69
|
import { MdiInvoiceTextEditOutline } from "./components/icons/mdi-invoice-text-edit-outline.qwik.mjs";
|
|
61
70
|
import { MdiKeyVariant } from "./components/icons/mdi-key-variant.qwik.mjs";
|
|
@@ -66,6 +75,7 @@ import { MdiLogin } from "./components/icons/mdi-login.qwik.mjs";
|
|
|
66
75
|
import { MdiLogout } from "./components/icons/mdi-logout.qwik.mjs";
|
|
67
76
|
import { MdiMicrosoft } from "./components/icons/mdi-microsoft.qwik.mjs";
|
|
68
77
|
import { MdiMicrosoftGithub } from "./components/icons/mdi-microsoft-github.qwik.mjs";
|
|
78
|
+
import { MdiMixerSettings } from "./components/icons/mdi-mixer-settings.qwik.mjs";
|
|
69
79
|
import { MdiNavigateBefore } from "./components/icons/mdi-navigate-before.qwik.mjs";
|
|
70
80
|
import { MdiNavigateNext } from "./components/icons/mdi-navigate-next.qwik.mjs";
|
|
71
81
|
import { MdiNetworkOutline } from "./components/icons/mdi-network-outline.qwik.mjs";
|
|
@@ -77,6 +87,8 @@ import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.
|
|
|
77
87
|
import { MdiRefresh } from "./components/icons/mdi-refresh.qwik.mjs";
|
|
78
88
|
import { MdiSearch } from "./components/icons/mdi-search.qwik.mjs";
|
|
79
89
|
import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs";
|
|
90
|
+
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
91
|
+
import { MdiShieldCrownOutline } from "./components/icons/mdi-shield-crown-outline.qwik.mjs";
|
|
80
92
|
import { MdiUser } from "./components/icons/mdi-user.qwik.mjs";
|
|
81
93
|
import { MdiUserOutline } from "./components/icons/mdi-user-outline.qwik.mjs";
|
|
82
94
|
import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
|
|
@@ -171,8 +183,16 @@ export {
|
|
|
171
183
|
MdiCloudDownload,
|
|
172
184
|
MdiCloudDownloadOutline,
|
|
173
185
|
MdiCloudLockOutline,
|
|
186
|
+
MdiContact,
|
|
187
|
+
MdiContactOutline,
|
|
188
|
+
MdiContacts,
|
|
189
|
+
MdiContactsOutline,
|
|
174
190
|
MdiContentCopy,
|
|
175
191
|
MdiCreditCardOutline,
|
|
192
|
+
MdiCrown,
|
|
193
|
+
MdiCrownCircle,
|
|
194
|
+
MdiCrownCircleOutline,
|
|
195
|
+
MdiCrownOutline,
|
|
176
196
|
MdiDangerous,
|
|
177
197
|
MdiDeleteOutline,
|
|
178
198
|
MdiDevTo,
|
|
@@ -200,6 +220,7 @@ export {
|
|
|
200
220
|
MdiInformationVariantBoxOutline,
|
|
201
221
|
MdiInformationVariantCircle,
|
|
202
222
|
MdiInformationVariantCircleOutline,
|
|
223
|
+
MdiInstantMix,
|
|
203
224
|
MdiInvite,
|
|
204
225
|
MdiInvoiceTextEditOutline,
|
|
205
226
|
MdiKeyVariant,
|
|
@@ -210,6 +231,7 @@ export {
|
|
|
210
231
|
MdiLogout,
|
|
211
232
|
MdiMicrosoft,
|
|
212
233
|
MdiMicrosoftGithub,
|
|
234
|
+
MdiMixerSettings,
|
|
213
235
|
MdiNavigateBefore,
|
|
214
236
|
MdiNavigateNext,
|
|
215
237
|
MdiNetworkOutline,
|
|
@@ -221,6 +243,8 @@ export {
|
|
|
221
243
|
MdiRefresh,
|
|
222
244
|
MdiSearch,
|
|
223
245
|
MdiSecureOutline,
|
|
246
|
+
MdiShieldCrown,
|
|
247
|
+
MdiShieldCrownOutline,
|
|
224
248
|
MdiUser,
|
|
225
249
|
MdiUserOutline,
|
|
226
250
|
MdiUsersOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -27,8 +27,16 @@ export * from './components/icons/mdi-close';
|
|
|
27
27
|
export * from './components/icons/mdi-cloud-download';
|
|
28
28
|
export * from './components/icons/mdi-cloud-download-outline';
|
|
29
29
|
export * from './components/icons/mdi-cloud-lock-outline';
|
|
30
|
+
export * from './components/icons/mdi-contact';
|
|
31
|
+
export * from './components/icons/mdi-contact-outline';
|
|
32
|
+
export * from './components/icons/mdi-contacts';
|
|
33
|
+
export * from './components/icons/mdi-contacts-outline';
|
|
30
34
|
export * from './components/icons/mdi-content-copy';
|
|
31
35
|
export * from './components/icons/mdi-credit-card-outline';
|
|
36
|
+
export * from './components/icons/mdi-crown';
|
|
37
|
+
export * from './components/icons/mdi-crown-circle';
|
|
38
|
+
export * from './components/icons/mdi-crown-circle-outline';
|
|
39
|
+
export * from './components/icons/mdi-crown-outline';
|
|
32
40
|
export * from './components/icons/mdi-dangerous';
|
|
33
41
|
export * from './components/icons/mdi-delete-outline';
|
|
34
42
|
export * from './components/icons/mdi-dev-to';
|
|
@@ -56,6 +64,7 @@ export * from './components/icons/mdi-information-variant-box';
|
|
|
56
64
|
export * from './components/icons/mdi-information-variant-box-outline';
|
|
57
65
|
export * from './components/icons/mdi-information-variant-circle';
|
|
58
66
|
export * from './components/icons/mdi-information-variant-circle-outline';
|
|
67
|
+
export * from './components/icons/mdi-instant-mix';
|
|
59
68
|
export * from './components/icons/mdi-invite';
|
|
60
69
|
export * from './components/icons/mdi-invoice-text-edit-outline';
|
|
61
70
|
export * from './components/icons/mdi-key-variant';
|
|
@@ -66,6 +75,7 @@ export * from './components/icons/mdi-login';
|
|
|
66
75
|
export * from './components/icons/mdi-logout';
|
|
67
76
|
export * from './components/icons/mdi-microsoft';
|
|
68
77
|
export * from './components/icons/mdi-microsoft-github';
|
|
78
|
+
export * from './components/icons/mdi-mixer-settings';
|
|
69
79
|
export * from './components/icons/mdi-navigate-before';
|
|
70
80
|
export * from './components/icons/mdi-navigate-next';
|
|
71
81
|
export * from './components/icons/mdi-network-outline';
|
|
@@ -77,6 +87,8 @@ export * from './components/icons/mdi-plus-box-outline';
|
|
|
77
87
|
export * from './components/icons/mdi-refresh';
|
|
78
88
|
export * from './components/icons/mdi-search';
|
|
79
89
|
export * from './components/icons/mdi-secure-outline';
|
|
90
|
+
export * from './components/icons/mdi-shield-crown';
|
|
91
|
+
export * from './components/icons/mdi-shield-crown-outline';
|
|
80
92
|
export * from './components/icons/mdi-user';
|
|
81
93
|
export * from './components/icons/mdi-user-outline';
|
|
82
94
|
export * from './components/icons/mdi-users-outline';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nr1e/qwik-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "NR1E Qwik Icons Library",
|
|
5
5
|
"author": "NR1E, Inc.",
|
|
6
6
|
"publishConfig": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/nr1etech/
|
|
12
|
+
"url": "https://github.com/nr1etech/public.git"
|
|
13
13
|
},
|
|
14
14
|
"main": "./lib/index.qwik.mjs",
|
|
15
15
|
"qwik": "./lib/index.qwik.mjs",
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"sideEffects": false,
|
|
33
33
|
"type": "module",
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@builder.io/qwik": "1.
|
|
35
|
+
"@builder.io/qwik": "1.19.0",
|
|
36
36
|
"@eslint/js": "latest",
|
|
37
|
-
"@types/node": "^
|
|
38
|
-
"eslint": "9.
|
|
39
|
-
"eslint-plugin-qwik": "1.
|
|
40
|
-
"globals": "
|
|
41
|
-
"np": "^
|
|
42
|
-
"prettier": "3.
|
|
43
|
-
"typescript": "5.
|
|
44
|
-
"typescript-eslint": "8.
|
|
37
|
+
"@types/node": "^25.2.2",
|
|
38
|
+
"eslint": "9.39.2",
|
|
39
|
+
"eslint-plugin-qwik": "1.19.0",
|
|
40
|
+
"globals": "17.0.0",
|
|
41
|
+
"np": "^11.0.2",
|
|
42
|
+
"prettier": "3.8.1",
|
|
43
|
+
"typescript": "5.9.3",
|
|
44
|
+
"typescript-eslint": "8.55.0",
|
|
45
45
|
"undici": "*",
|
|
46
46
|
"vite": "7.2.6",
|
|
47
|
-
"vite-tsconfig-paths": "^
|
|
48
|
-
"vitest": "4.0.
|
|
47
|
+
"vite-tsconfig-paths": "^6.0.5",
|
|
48
|
+
"vitest": "4.0.18"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"prebuild": "prettier --check . && eslint .",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"build.lib": "vite build --mode lib",
|
|
54
54
|
"build.types": "tsc --emitDeclarationOnly",
|
|
55
55
|
"clean": "rm -rf lib lib-types",
|
|
56
|
-
"dev": "vite --mode ssr",
|
|
56
|
+
"dev": "vite --mode ssr --port 5176",
|
|
57
57
|
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
|
|
58
58
|
"fmt": "prettier --write .",
|
|
59
59
|
"fmt.check": "prettier --check .",
|