@nr1e/qwik-icons 0.0.20 → 0.0.22
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-clipboard-pulse-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-clipboard-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-heart.qwik.cjs +16 -0
- package/lib/components/icons/mdi-heart.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pulse.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pulse.qwik.mjs +16 -0
- package/lib/components/icons/mdi-rocket-launch-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-rocket-launch-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-rocket-launch.qwik.cjs +16 -0
- package/lib/components/icons/mdi-rocket-launch.qwik.mjs +16 -0
- package/lib/components/icons/mdi-rocket-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-rocket-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-rocket.qwik.cjs +16 -0
- package/lib/components/icons/mdi-rocket.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +20 -0
- package/lib/index.qwik.mjs +20 -0
- package/lib-types/components/icons/mdi-clipboard-pulse-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-clipboard-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-heart.d.ts +2 -0
- package/lib-types/components/icons/mdi-pulse.d.ts +2 -0
- package/lib-types/components/icons/mdi-rocket-launch-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-rocket-launch.d.ts +2 -0
- package/lib-types/components/icons/mdi-rocket-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-rocket.d.ts +2 -0
- package/lib-types/index.d.ts +10 -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 MdiClipboardPulseOutline = 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 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 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-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 15h3.11l1.51-2.85l.76 5.77l3.69-4.71L15.89 15H19v4H5zm14-1.54h-2.47l-2.6-2.6l-2.49 3.19l-.94-6.97l-3.33 6.38H5V5h2v1h10V5h2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiClipboardPulseOutline = MdiClipboardPulseOutline;
|
|
@@ -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 MdiClipboardPulseOutline = 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 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 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-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 15h3.11l1.51-2.85l.76 5.77l3.69-4.71L15.89 15H19v4H5zm14-1.54h-2.47l-2.6-2.6l-2.49 3.19l-.94-6.97l-3.33 6.38H5V5h2v1h10V5h2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiClipboardPulseOutline
|
|
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 MdiClipboardPulse = 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 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 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-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 13.46h2.17l3.33-6.38l.94 6.97l2.49-3.19l2.6 2.6H19V15h-3.11l-1.82-1.79l-3.69 4.71l-.76-5.77L8.11 15H5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiClipboardPulse = MdiClipboardPulse;
|
|
@@ -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 MdiClipboardPulse = 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 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 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-7 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1M5 13.46h2.17l3.33-6.38l.94 6.97l2.49-3.19l2.6 2.6H19V15h-3.11l-1.82-1.79l-3.69 4.71l-.76-5.77L8.11 15H5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiClipboardPulse
|
|
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 MdiHeartOutline = 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.1 18.55l-.1.1l-.11-.1C7.14 14.24 4 11.39 4 8.5C4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5c0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3C4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5C22 5.41 19.58 3 16.5 3"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeartOutline = MdiHeartOutline;
|
|
@@ -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 MdiHeartOutline = 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.1 18.55l-.1.1l-.11-.1C7.14 14.24 4 11.39 4 8.5C4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5c0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3C4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5C22 5.41 19.58 3 16.5 3"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeartOutline
|
|
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 MdiHeartPulse = 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.5 4A5.5 5.5 0 0 0 2 9.5c0 .5.09 1 .22 1.5H6.3l1.27-3.37c.3-.8 1.48-.88 1.86 0L11.5 13l.59-1.42c.13-.33.48-.58.91-.58h8.78c.13-.5.22-1 .22-1.5A5.5 5.5 0 0 0 16.5 4c-1.86 0-3.5.93-4.5 2.34C11 4.93 9.36 4 7.5 4M3 12.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1h2.44L11 20c1 .9 1 .9 2 0l5.56-5.5H21a1 1 0 0 0 1-1a1 1 0 0 0-1-1h-7.6l-.93 2.3c-.4 1.01-1.55.87-1.92.03L8.5 9.5l-.96 2.33c-.15.38-.49.67-.94.67z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeartPulse = MdiHeartPulse;
|
|
@@ -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 MdiHeartPulse = 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.5 4A5.5 5.5 0 0 0 2 9.5c0 .5.09 1 .22 1.5H6.3l1.27-3.37c.3-.8 1.48-.88 1.86 0L11.5 13l.59-1.42c.13-.33.48-.58.91-.58h8.78c.13-.5.22-1 .22-1.5A5.5 5.5 0 0 0 16.5 4c-1.86 0-3.5.93-4.5 2.34C11 4.93 9.36 4 7.5 4M3 12.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1h2.44L11 20c1 .9 1 .9 2 0l5.56-5.5H21a1 1 0 0 0 1-1a1 1 0 0 0-1-1h-7.6l-.93 2.3c-.4 1.01-1.55.87-1.92.03L8.5 9.5l-.96 2.33c-.15.38-.49.67-.94.67z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeartPulse
|
|
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 MdiHeart = 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 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiHeart = MdiHeart;
|
|
@@ -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 MdiHeart = 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 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiHeart
|
|
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 MdiPulse = 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 13h2.79l4.31-8.21l1.18 8.96l3.22-4.09L17.83 13H21v2h-4l-2.33-2.33l-4.75 6.06l-.98-7.42L7 15H3z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPulse = MdiPulse;
|
|
@@ -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 MdiPulse = 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 13h2.79l4.31-8.21l1.18 8.96l3.22-4.09L17.83 13H21v2h-4l-2.33-2.33l-4.75 6.06l-.98-7.42L7 15H3z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPulse
|
|
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 MdiRocketLaunchOutline = 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: "m13.16 22.19l-1.66-3.84c1.6-.58 3.07-1.35 4.43-2.27l-2.78 6.11m-7.5-9.69l-3.84-1.65l6.11-2.78C7 9.43 6.23 10.91 5.65 12.5M20 4c-2.96-.22-5.2.83-7.55 3.31c-2.36 2.47-3.36 4.5-3.95 6.04l2.17 2.1c2.29-.87 4.33-2.18 6.03-3.89C20 8.27 20.17 5.4 20 4m-9 1.9c2.63-2.8 7-4.82 10.66-3.55c0 0 2.12 4.96-3.55 10.65c-2.2 2.17-4.58 3.5-6.72 4.34c-.24.09-1.15.39-2.13-.46l-2.13-2.13c-.56-.56-.74-1.38-.47-2.13C7.5 10.5 8.41 8.69 11 5.9M6.25 22H4.84l4.09-4.1c.3.21.63.36.97.45zM2 22v-1.41l4.77-4.78l1.43 1.42L3.41 22zm0-2.83v-1.42l3.65-3.65c.09.35.24.68.45.97zM16 6a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiRocketLaunchOutline = MdiRocketLaunchOutline;
|
|
@@ -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 MdiRocketLaunchOutline = 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: "m13.16 22.19l-1.66-3.84c1.6-.58 3.07-1.35 4.43-2.27l-2.78 6.11m-7.5-9.69l-3.84-1.65l6.11-2.78C7 9.43 6.23 10.91 5.65 12.5M20 4c-2.96-.22-5.2.83-7.55 3.31c-2.36 2.47-3.36 4.5-3.95 6.04l2.17 2.1c2.29-.87 4.33-2.18 6.03-3.89C20 8.27 20.17 5.4 20 4m-9 1.9c2.63-2.8 7-4.82 10.66-3.55c0 0 2.12 4.96-3.55 10.65c-2.2 2.17-4.58 3.5-6.72 4.34c-.24.09-1.15.39-2.13-.46l-2.13-2.13c-.56-.56-.74-1.38-.47-2.13C7.5 10.5 8.41 8.69 11 5.9M6.25 22H4.84l4.09-4.1c.3.21.63.36.97.45zM2 22v-1.41l4.77-4.78l1.43 1.42L3.41 22zm0-2.83v-1.42l3.65-3.65c.09.35.24.68.45.97zM16 6a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiRocketLaunchOutline
|
|
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 MdiRocketLaunch = 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: "m13.16 22.19l-1.66-3.84c1.6-.58 3.07-1.35 4.43-2.27l-2.78 6.11m-7.5-9.69l-3.84-1.65l6.11-2.78a20 20 0 0 0-2.27 4.43M21.66 2.35S23.78 7.31 18.11 13c-2.2 2.17-4.58 3.5-6.73 4.34c-.74.28-1.57.1-2.12-.46l-2.13-2.13c-.56-.56-.74-1.38-.47-2.13C7.5 10.5 8.83 8.09 11 5.89C16.69.216 21.66 2.35 21.66 2.35M6.25 22H4.84l4.09-4.1c.3.21.63.36.97.45zM2 22v-1.41l4.77-4.78l1.43 1.42L3.41 22zm0-2.84v-1.41l3.65-3.65c.09.35.24.68.45.97zM16 6a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiRocketLaunch = MdiRocketLaunch;
|
|
@@ -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 MdiRocketLaunch = 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: "m13.16 22.19l-1.66-3.84c1.6-.58 3.07-1.35 4.43-2.27l-2.78 6.11m-7.5-9.69l-3.84-1.65l6.11-2.78a20 20 0 0 0-2.27 4.43M21.66 2.35S23.78 7.31 18.11 13c-2.2 2.17-4.58 3.5-6.73 4.34c-.74.28-1.57.1-2.12-.46l-2.13-2.13c-.56-.56-.74-1.38-.47-2.13C7.5 10.5 8.83 8.09 11 5.89C16.69.216 21.66 2.35 21.66 2.35M6.25 22H4.84l4.09-4.1c.3.21.63.36.97.45zM2 22v-1.41l4.77-4.78l1.43 1.42L3.41 22zm0-2.84v-1.41l3.65-3.65c.09.35.24.68.45.97zM16 6a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiRocketLaunch
|
|
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 MdiRocketOutline = 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 2S7 4 7 12c0 3.1.76 5.75 1.67 7.83A2 2 0 0 0 10.5 21h3a2 2 0 0 0 1.83-1.17C16.25 17.75 17 15.1 17 12c0-8-5-10-5-10m1.5 17h-3c-1-2.24-1.5-4.59-1.5-7c0-4.64 1.9-6.8 3-7.67c1.1.87 3 3.03 3 7.67c0 2.41-.5 4.76-1.5 7m6.5 3l-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72m-9.79 4.72L4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 12c-1.1 0-2-.9-2-2s.9-2 2-2s2 .9 2 2s-.9 2-2 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiRocketOutline = MdiRocketOutline;
|
|
@@ -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 MdiRocketOutline = 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 2S7 4 7 12c0 3.1.76 5.75 1.67 7.83A2 2 0 0 0 10.5 21h3a2 2 0 0 0 1.83-1.17C16.25 17.75 17 15.1 17 12c0-8-5-10-5-10m1.5 17h-3c-1-2.24-1.5-4.59-1.5-7c0-4.64 1.9-6.8 3-7.67c1.1.87 3 3.03 3 7.67c0 2.41-.5 4.76-1.5 7m6.5 3l-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72m-9.79 4.72L4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 12c-1.1 0-2-.9-2-2s.9-2 2-2s2 .9 2 2s-.9 2-2 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiRocketOutline
|
|
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 MdiRocket = 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 22l-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72zM7.86 20.45L4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 2s5 2 5 10c0 3.1-.75 5.75-1.67 7.83A2 2 0 0 1 13.5 21h-3a2 2 0 0 1-1.83-1.17C7.76 17.75 7 15.1 7 12c0-8 5-10 5-10m0 10c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiRocket = MdiRocket;
|
|
@@ -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 MdiRocket = 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 22l-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72zM7.86 20.45L4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 2s5 2 5 10c0 3.1-.75 5.75-1.67 7.83A2 2 0 0 1 13.5 21h-3a2 2 0 0 1-1.83-1.17C7.76 17.75 7 15.1 7 12c0-8 5-10 5-10m0 10c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiRocket
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -27,6 +27,8 @@ const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
|
27
27
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
28
28
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
29
29
|
const mdiChevronUp = require("./components/icons/mdi-chevron-up.qwik.cjs");
|
|
30
|
+
const mdiClipboardPulse = require("./components/icons/mdi-clipboard-pulse.qwik.cjs");
|
|
31
|
+
const mdiClipboardPulseOutline = require("./components/icons/mdi-clipboard-pulse-outline.qwik.cjs");
|
|
30
32
|
const mdiClose = require("./components/icons/mdi-close.qwik.cjs");
|
|
31
33
|
const mdiCloudDownload = require("./components/icons/mdi-cloud-download.qwik.cjs");
|
|
32
34
|
const mdiCloudDownloadOutline = require("./components/icons/mdi-cloud-download-outline.qwik.cjs");
|
|
@@ -67,6 +69,9 @@ const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
|
67
69
|
const mdiGoogle = require("./components/icons/mdi-google.qwik.cjs");
|
|
68
70
|
const mdiGoogleDrive = require("./components/icons/mdi-google-drive.qwik.cjs");
|
|
69
71
|
const mdiHamburgerMenu = require("./components/icons/mdi-hamburger-menu.qwik.cjs");
|
|
72
|
+
const mdiHeart = require("./components/icons/mdi-heart.qwik.cjs");
|
|
73
|
+
const mdiHeartOutline = require("./components/icons/mdi-heart-outline.qwik.cjs");
|
|
74
|
+
const mdiHeartPulse = require("./components/icons/mdi-heart-pulse.qwik.cjs");
|
|
70
75
|
const mdiInformation = require("./components/icons/mdi-information.qwik.cjs");
|
|
71
76
|
const mdiInformationBox = require("./components/icons/mdi-information-box.qwik.cjs");
|
|
72
77
|
const mdiInformationBoxOutline = require("./components/icons/mdi-information-box-outline.qwik.cjs");
|
|
@@ -99,8 +104,13 @@ const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
|
|
|
99
104
|
const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
|
|
100
105
|
const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
|
|
101
106
|
const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
|
|
107
|
+
const mdiPulse = require("./components/icons/mdi-pulse.qwik.cjs");
|
|
102
108
|
const mdiQrCode = require("./components/icons/mdi-qr-code.qwik.cjs");
|
|
103
109
|
const mdiRefresh = require("./components/icons/mdi-refresh.qwik.cjs");
|
|
110
|
+
const mdiRocket = require("./components/icons/mdi-rocket.qwik.cjs");
|
|
111
|
+
const mdiRocketLaunch = require("./components/icons/mdi-rocket-launch.qwik.cjs");
|
|
112
|
+
const mdiRocketLaunchOutline = require("./components/icons/mdi-rocket-launch-outline.qwik.cjs");
|
|
113
|
+
const mdiRocketOutline = require("./components/icons/mdi-rocket-outline.qwik.cjs");
|
|
104
114
|
const mdiSearch = require("./components/icons/mdi-search.qwik.cjs");
|
|
105
115
|
const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs");
|
|
106
116
|
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
@@ -242,6 +252,8 @@ exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
|
242
252
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
243
253
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
|
244
254
|
exports.MdiChevronUp = mdiChevronUp.MdiChevronUp;
|
|
255
|
+
exports.MdiClipboardPulse = mdiClipboardPulse.MdiClipboardPulse;
|
|
256
|
+
exports.MdiClipboardPulseOutline = mdiClipboardPulseOutline.MdiClipboardPulseOutline;
|
|
245
257
|
exports.MdiClose = mdiClose.MdiClose;
|
|
246
258
|
exports.MdiCloudDownload = mdiCloudDownload.MdiCloudDownload;
|
|
247
259
|
exports.MdiCloudDownloadOutline = mdiCloudDownloadOutline.MdiCloudDownloadOutline;
|
|
@@ -282,6 +294,9 @@ exports.MdiGmail = mdiGmail.MdiGmail;
|
|
|
282
294
|
exports.MdiGoogle = mdiGoogle.MdiGoogle;
|
|
283
295
|
exports.MdiGoogleDrive = mdiGoogleDrive.MdiGoogleDrive;
|
|
284
296
|
exports.MdiHamburgerMenu = mdiHamburgerMenu.MdiHamburgerMenu;
|
|
297
|
+
exports.MdiHeart = mdiHeart.MdiHeart;
|
|
298
|
+
exports.MdiHeartOutline = mdiHeartOutline.MdiHeartOutline;
|
|
299
|
+
exports.MdiHeartPulse = mdiHeartPulse.MdiHeartPulse;
|
|
285
300
|
exports.MdiInformation = mdiInformation.MdiInformation;
|
|
286
301
|
exports.MdiInformationBox = mdiInformationBox.MdiInformationBox;
|
|
287
302
|
exports.MdiInformationBoxOutline = mdiInformationBoxOutline.MdiInformationBoxOutline;
|
|
@@ -314,8 +329,13 @@ exports.MdiPercent = mdiPercent.MdiPercent;
|
|
|
314
329
|
exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
|
|
315
330
|
exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
|
|
316
331
|
exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
|
|
332
|
+
exports.MdiPulse = mdiPulse.MdiPulse;
|
|
317
333
|
exports.MdiQrCode = mdiQrCode.MdiQrCode;
|
|
318
334
|
exports.MdiRefresh = mdiRefresh.MdiRefresh;
|
|
335
|
+
exports.MdiRocket = mdiRocket.MdiRocket;
|
|
336
|
+
exports.MdiRocketLaunch = mdiRocketLaunch.MdiRocketLaunch;
|
|
337
|
+
exports.MdiRocketLaunchOutline = mdiRocketLaunchOutline.MdiRocketLaunchOutline;
|
|
338
|
+
exports.MdiRocketOutline = mdiRocketOutline.MdiRocketOutline;
|
|
319
339
|
exports.MdiSearch = mdiSearch.MdiSearch;
|
|
320
340
|
exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
321
341
|
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -25,6 +25,8 @@ import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
|
25
25
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
26
26
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
27
27
|
import { MdiChevronUp } from "./components/icons/mdi-chevron-up.qwik.mjs";
|
|
28
|
+
import { MdiClipboardPulse } from "./components/icons/mdi-clipboard-pulse.qwik.mjs";
|
|
29
|
+
import { MdiClipboardPulseOutline } from "./components/icons/mdi-clipboard-pulse-outline.qwik.mjs";
|
|
28
30
|
import { MdiClose } from "./components/icons/mdi-close.qwik.mjs";
|
|
29
31
|
import { MdiCloudDownload } from "./components/icons/mdi-cloud-download.qwik.mjs";
|
|
30
32
|
import { MdiCloudDownloadOutline } from "./components/icons/mdi-cloud-download-outline.qwik.mjs";
|
|
@@ -65,6 +67,9 @@ import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
|
65
67
|
import { MdiGoogle } from "./components/icons/mdi-google.qwik.mjs";
|
|
66
68
|
import { MdiGoogleDrive } from "./components/icons/mdi-google-drive.qwik.mjs";
|
|
67
69
|
import { MdiHamburgerMenu } from "./components/icons/mdi-hamburger-menu.qwik.mjs";
|
|
70
|
+
import { MdiHeart } from "./components/icons/mdi-heart.qwik.mjs";
|
|
71
|
+
import { MdiHeartOutline } from "./components/icons/mdi-heart-outline.qwik.mjs";
|
|
72
|
+
import { MdiHeartPulse } from "./components/icons/mdi-heart-pulse.qwik.mjs";
|
|
68
73
|
import { MdiInformation } from "./components/icons/mdi-information.qwik.mjs";
|
|
69
74
|
import { MdiInformationBox } from "./components/icons/mdi-information-box.qwik.mjs";
|
|
70
75
|
import { MdiInformationBoxOutline } from "./components/icons/mdi-information-box-outline.qwik.mjs";
|
|
@@ -97,8 +102,13 @@ import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
|
|
|
97
102
|
import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
|
|
98
103
|
import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
|
|
99
104
|
import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
|
|
105
|
+
import { MdiPulse } from "./components/icons/mdi-pulse.qwik.mjs";
|
|
100
106
|
import { MdiQrCode } from "./components/icons/mdi-qr-code.qwik.mjs";
|
|
101
107
|
import { MdiRefresh } from "./components/icons/mdi-refresh.qwik.mjs";
|
|
108
|
+
import { MdiRocket } from "./components/icons/mdi-rocket.qwik.mjs";
|
|
109
|
+
import { MdiRocketLaunch } from "./components/icons/mdi-rocket-launch.qwik.mjs";
|
|
110
|
+
import { MdiRocketLaunchOutline } from "./components/icons/mdi-rocket-launch-outline.qwik.mjs";
|
|
111
|
+
import { MdiRocketOutline } from "./components/icons/mdi-rocket-outline.qwik.mjs";
|
|
102
112
|
import { MdiSearch } from "./components/icons/mdi-search.qwik.mjs";
|
|
103
113
|
import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs";
|
|
104
114
|
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
@@ -294,6 +304,8 @@ export {
|
|
|
294
304
|
MdiCheckCircleOutline,
|
|
295
305
|
MdiChevronDown,
|
|
296
306
|
MdiChevronUp,
|
|
307
|
+
MdiClipboardPulse,
|
|
308
|
+
MdiClipboardPulseOutline,
|
|
297
309
|
MdiClose,
|
|
298
310
|
MdiCloudDownload,
|
|
299
311
|
MdiCloudDownloadOutline,
|
|
@@ -334,6 +346,9 @@ export {
|
|
|
334
346
|
MdiGoogle,
|
|
335
347
|
MdiGoogleDrive,
|
|
336
348
|
MdiHamburgerMenu,
|
|
349
|
+
MdiHeart,
|
|
350
|
+
MdiHeartOutline,
|
|
351
|
+
MdiHeartPulse,
|
|
337
352
|
MdiInformation,
|
|
338
353
|
MdiInformationBox,
|
|
339
354
|
MdiInformationBoxOutline,
|
|
@@ -366,8 +381,13 @@ export {
|
|
|
366
381
|
MdiPersonCheck,
|
|
367
382
|
MdiPersonCheckOutline,
|
|
368
383
|
MdiPlusBoxOutline,
|
|
384
|
+
MdiPulse,
|
|
369
385
|
MdiQrCode,
|
|
370
386
|
MdiRefresh,
|
|
387
|
+
MdiRocket,
|
|
388
|
+
MdiRocketLaunch,
|
|
389
|
+
MdiRocketLaunchOutline,
|
|
390
|
+
MdiRocketOutline,
|
|
371
391
|
MdiSearch,
|
|
372
392
|
MdiSecureOutline,
|
|
373
393
|
MdiShieldCrown,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export * from './components/icons/mdi-check-circle';
|
|
|
25
25
|
export * from './components/icons/mdi-check-circle-outline';
|
|
26
26
|
export * from './components/icons/mdi-chevron-down';
|
|
27
27
|
export * from './components/icons/mdi-chevron-up';
|
|
28
|
+
export * from './components/icons/mdi-clipboard-pulse';
|
|
29
|
+
export * from './components/icons/mdi-clipboard-pulse-outline';
|
|
28
30
|
export * from './components/icons/mdi-close';
|
|
29
31
|
export * from './components/icons/mdi-cloud-download';
|
|
30
32
|
export * from './components/icons/mdi-cloud-download-outline';
|
|
@@ -65,6 +67,9 @@ export * from './components/icons/mdi-gmail';
|
|
|
65
67
|
export * from './components/icons/mdi-google';
|
|
66
68
|
export * from './components/icons/mdi-google-drive';
|
|
67
69
|
export * from './components/icons/mdi-hamburger-menu';
|
|
70
|
+
export * from './components/icons/mdi-heart';
|
|
71
|
+
export * from './components/icons/mdi-heart-outline';
|
|
72
|
+
export * from './components/icons/mdi-heart-pulse';
|
|
68
73
|
export * from './components/icons/mdi-information';
|
|
69
74
|
export * from './components/icons/mdi-information-box';
|
|
70
75
|
export * from './components/icons/mdi-information-box-outline';
|
|
@@ -97,8 +102,13 @@ export * from './components/icons/mdi-percent';
|
|
|
97
102
|
export * from './components/icons/mdi-person-check';
|
|
98
103
|
export * from './components/icons/mdi-person-check-outline';
|
|
99
104
|
export * from './components/icons/mdi-plus-box-outline';
|
|
105
|
+
export * from './components/icons/mdi-pulse';
|
|
100
106
|
export * from './components/icons/mdi-qr-code';
|
|
101
107
|
export * from './components/icons/mdi-refresh';
|
|
108
|
+
export * from './components/icons/mdi-rocket';
|
|
109
|
+
export * from './components/icons/mdi-rocket-launch';
|
|
110
|
+
export * from './components/icons/mdi-rocket-launch-outline';
|
|
111
|
+
export * from './components/icons/mdi-rocket-outline';
|
|
102
112
|
export * from './components/icons/mdi-search';
|
|
103
113
|
export * from './components/icons/mdi-secure-outline';
|
|
104
114
|
export * from './components/icons/mdi-shield-crown';
|