@nr1e/qwik-icons 0.0.24 → 0.0.25
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-bug-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bug-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bug.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bug.qwik.mjs +16 -0
- package/lib/components/icons/mdi-feature-highlight.qwik.cjs +16 -0
- package/lib/components/icons/mdi-feature-highlight.qwik.mjs +16 -0
- package/lib/components/icons/mdi-support.qwik.cjs +16 -0
- package/lib/components/icons/mdi-support.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +8 -0
- package/lib/index.qwik.mjs +8 -0
- package/lib-types/components/icons/mdi-bug-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-bug.d.ts +2 -0
- package/lib-types/components/icons/mdi-feature-highlight.d.ts +2 -0
- package/lib-types/components/icons/mdi-support.d.ts +2 -0
- package/lib-types/index.d.ts +4 -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 MdiBugOutline = 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 8h-2.81c-.45-.8-1.07-1.5-1.82-2L17 4.41L15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3L7 4.41L8.62 6c-.75.5-1.36 1.21-1.81 2H4v2h2.09c-.06.33-.09.66-.09 1v1H4v2h2v1c0 .34.03.67.09 1H4v2h2.81A5.99 5.99 0 0 0 15 20.18c.91-.52 1.67-1.28 2.19-2.18H20v-2h-2.09c.06-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.03-.67-.09-1H20zm-4 7a4 4 0 0 1-4 4a4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4a4 4 0 0 1 4 4zm-2-5v2h-4v-2zm-4 4h4v2h-4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBugOutline = MdiBugOutline;
|
|
@@ -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 MdiBugOutline = 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 8h-2.81c-.45-.8-1.07-1.5-1.82-2L17 4.41L15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3L7 4.41L8.62 6c-.75.5-1.36 1.21-1.81 2H4v2h2.09c-.06.33-.09.66-.09 1v1H4v2h2v1c0 .34.03.67.09 1H4v2h2.81A5.99 5.99 0 0 0 15 20.18c.91-.52 1.67-1.28 2.19-2.18H20v-2h-2.09c.06-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.03-.67-.09-1H20zm-4 7a4 4 0 0 1-4 4a4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4a4 4 0 0 1 4 4zm-2-5v2h-4v-2zm-4 4h4v2h-4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBugOutline
|
|
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 MdiBug = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M14 12h-4v-2h4m0 6h-4v-2h4m6-6h-2.81a6 6 0 0 0-1.82-1.96L17 4.41L15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3L7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBug = MdiBug;
|
|
@@ -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 MdiBug = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M14 12h-4v-2h4m0 6h-4v-2h4m6-6h-2.81a6 6 0 0 0-1.82-1.96L17 4.41L15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3L7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBug
|
|
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 MdiFeatureHighlight = 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: "m8.58 17.25l.92-3.89l-3-2.58l3.95-.37L12 6.8l1.55 3.65l3.95.33l-3 2.58l.92 3.89L12 15.19zM12 2a10 10 0 0 1 10 10a10 10 0 0 1-10 10A10 10 0 0 1 2 12A10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8a8 8 0 0 0 8 8a8 8 0 0 0 8-8a8 8 0 0 0-8-8"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiFeatureHighlight = MdiFeatureHighlight;
|
|
@@ -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 MdiFeatureHighlight = 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: "m8.58 17.25l.92-3.89l-3-2.58l3.95-.37L12 6.8l1.55 3.65l3.95.33l-3 2.58l.92 3.89L12 15.19zM12 2a10 10 0 0 1 10 10a10 10 0 0 1-10 10A10 10 0 0 1 2 12A10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8a8 8 0 0 0 8 8a8 8 0 0 0 8-8a8 8 0 0 0-8-8"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiFeatureHighlight
|
|
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 MdiSupport = 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: "M18.72 14.76c.35-.85.54-1.76.54-2.76c0-.72-.11-1.41-.3-2.05c-.65.15-1.33.23-2.04.23A9.07 9.07 0 0 1 9.5 6.34a9.2 9.2 0 0 1-4.73 4.88c-.04.25-.04.52-.04.78A7.27 7.27 0 0 0 12 19.27c1.05 0 2.06-.23 2.97-.64c.57 1.09.83 1.63.81 1.63c-1.64.55-2.91.82-3.78.82c-2.42 0-4.73-.95-6.43-2.66a9 9 0 0 1-2.24-3.69H2v-4.55h1.09a9.09 9.09 0 0 1 15.33-4.6a9 9 0 0 1 2.47 4.6H22v4.55h-.06L18.38 18l-5.3-.6v-1.67h4.83zm-9.45-2.99c.3 0 .59.12.8.34a1.136 1.136 0 0 1 0 1.6c-.21.21-.5.33-.8.33c-.63 0-1.14-.5-1.14-1.13s.51-1.14 1.14-1.14m5.45 0c.63 0 1.13.51 1.13 1.14s-.5 1.13-1.13 1.13s-1.14-.5-1.14-1.13a1.14 1.14 0 0 1 1.14-1.14"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiSupport = MdiSupport;
|
|
@@ -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 MdiSupport = 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: "M18.72 14.76c.35-.85.54-1.76.54-2.76c0-.72-.11-1.41-.3-2.05c-.65.15-1.33.23-2.04.23A9.07 9.07 0 0 1 9.5 6.34a9.2 9.2 0 0 1-4.73 4.88c-.04.25-.04.52-.04.78A7.27 7.27 0 0 0 12 19.27c1.05 0 2.06-.23 2.97-.64c.57 1.09.83 1.63.81 1.63c-1.64.55-2.91.82-3.78.82c-2.42 0-4.73-.95-6.43-2.66a9 9 0 0 1-2.24-3.69H2v-4.55h1.09a9.09 9.09 0 0 1 15.33-4.6a9 9 0 0 1 2.47 4.6H22v4.55h-.06L18.38 18l-5.3-.6v-1.67h4.83zm-9.45-2.99c.3 0 .59.12.8.34a1.136 1.136 0 0 1 0 1.6c-.21.21-.5.33-.8.33c-.63 0-1.14-.5-1.14-1.13s.51-1.14 1.14-1.14m5.45 0c.63 0 1.13.51 1.13 1.14s-.5 1.13-1.13 1.13s-1.14-.5-1.14-1.13a1.14 1.14 0 0 1 1.14-1.14"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiSupport
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -27,6 +27,8 @@ const mdiBellCurve = require("./components/icons/mdi-bell-curve.qwik.cjs");
|
|
|
27
27
|
const mdiBellCurveCumulative = require("./components/icons/mdi-bell-curve-cumulative.qwik.cjs");
|
|
28
28
|
const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
|
|
29
29
|
const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
|
|
30
|
+
const mdiBug = require("./components/icons/mdi-bug.qwik.cjs");
|
|
31
|
+
const mdiBugOutline = require("./components/icons/mdi-bug-outline.qwik.cjs");
|
|
30
32
|
const mdiBuilding = require("./components/icons/mdi-building.qwik.cjs");
|
|
31
33
|
const mdiCalendar = require("./components/icons/mdi-calendar.qwik.cjs");
|
|
32
34
|
const mdiChartBar = require("./components/icons/mdi-chart-bar.qwik.cjs");
|
|
@@ -76,6 +78,7 @@ const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs")
|
|
|
76
78
|
const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
|
|
77
79
|
const mdiError = require("./components/icons/mdi-error.qwik.cjs");
|
|
78
80
|
const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
|
|
81
|
+
const mdiFeatureHighlight = require("./components/icons/mdi-feature-highlight.qwik.cjs");
|
|
79
82
|
const mdiGauge = require("./components/icons/mdi-gauge.qwik.cjs");
|
|
80
83
|
const mdiGearOutline = require("./components/icons/mdi-gear-outline.qwik.cjs");
|
|
81
84
|
const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
@@ -144,6 +147,7 @@ const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs
|
|
|
144
147
|
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
145
148
|
const mdiShieldCrownOutline = require("./components/icons/mdi-shield-crown-outline.qwik.cjs");
|
|
146
149
|
const mdiSpeedometer = require("./components/icons/mdi-speedometer.qwik.cjs");
|
|
150
|
+
const mdiSupport = require("./components/icons/mdi-support.qwik.cjs");
|
|
147
151
|
const mdiTextEditOutline = require("./components/icons/mdi-text-edit-outline.qwik.cjs");
|
|
148
152
|
const mdiUser = require("./components/icons/mdi-user.qwik.cjs");
|
|
149
153
|
const mdiUserOutline = require("./components/icons/mdi-user-outline.qwik.cjs");
|
|
@@ -282,6 +286,8 @@ exports.MdiBellCurve = mdiBellCurve.MdiBellCurve;
|
|
|
282
286
|
exports.MdiBellCurveCumulative = mdiBellCurveCumulative.MdiBellCurveCumulative;
|
|
283
287
|
exports.MdiBrain = mdiBrain.MdiBrain;
|
|
284
288
|
exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
|
|
289
|
+
exports.MdiBug = mdiBug.MdiBug;
|
|
290
|
+
exports.MdiBugOutline = mdiBugOutline.MdiBugOutline;
|
|
285
291
|
exports.MdiBuilding = mdiBuilding.MdiBuilding;
|
|
286
292
|
exports.MdiCalendar = mdiCalendar.MdiCalendar;
|
|
287
293
|
exports.MdiChartBar = mdiChartBar.MdiChartBar;
|
|
@@ -331,6 +337,7 @@ exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
|
331
337
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
332
338
|
exports.MdiError = mdiError.MdiError;
|
|
333
339
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
340
|
+
exports.MdiFeatureHighlight = mdiFeatureHighlight.MdiFeatureHighlight;
|
|
334
341
|
exports.MdiGauge = mdiGauge.MdiGauge;
|
|
335
342
|
exports.MdiGearOutline = mdiGearOutline.MdiGearOutline;
|
|
336
343
|
exports.MdiGmail = mdiGmail.MdiGmail;
|
|
@@ -399,6 +406,7 @@ exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
|
399
406
|
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
|
400
407
|
exports.MdiShieldCrownOutline = mdiShieldCrownOutline.MdiShieldCrownOutline;
|
|
401
408
|
exports.MdiSpeedometer = mdiSpeedometer.MdiSpeedometer;
|
|
409
|
+
exports.MdiSupport = mdiSupport.MdiSupport;
|
|
402
410
|
exports.MdiTextEditOutline = mdiTextEditOutline.MdiTextEditOutline;
|
|
403
411
|
exports.MdiUser = mdiUser.MdiUser;
|
|
404
412
|
exports.MdiUserOutline = mdiUserOutline.MdiUserOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -25,6 +25,8 @@ import { MdiBellCurve } from "./components/icons/mdi-bell-curve.qwik.mjs";
|
|
|
25
25
|
import { MdiBellCurveCumulative } from "./components/icons/mdi-bell-curve-cumulative.qwik.mjs";
|
|
26
26
|
import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
|
|
27
27
|
import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
|
|
28
|
+
import { MdiBug } from "./components/icons/mdi-bug.qwik.mjs";
|
|
29
|
+
import { MdiBugOutline } from "./components/icons/mdi-bug-outline.qwik.mjs";
|
|
28
30
|
import { MdiBuilding } from "./components/icons/mdi-building.qwik.mjs";
|
|
29
31
|
import { MdiCalendar } from "./components/icons/mdi-calendar.qwik.mjs";
|
|
30
32
|
import { MdiChartBar } from "./components/icons/mdi-chart-bar.qwik.mjs";
|
|
@@ -74,6 +76,7 @@ import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
|
|
|
74
76
|
import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
|
|
75
77
|
import { MdiError } from "./components/icons/mdi-error.qwik.mjs";
|
|
76
78
|
import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
|
|
79
|
+
import { MdiFeatureHighlight } from "./components/icons/mdi-feature-highlight.qwik.mjs";
|
|
77
80
|
import { MdiGauge } from "./components/icons/mdi-gauge.qwik.mjs";
|
|
78
81
|
import { MdiGearOutline } from "./components/icons/mdi-gear-outline.qwik.mjs";
|
|
79
82
|
import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
@@ -142,6 +145,7 @@ import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs
|
|
|
142
145
|
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
143
146
|
import { MdiShieldCrownOutline } from "./components/icons/mdi-shield-crown-outline.qwik.mjs";
|
|
144
147
|
import { MdiSpeedometer } from "./components/icons/mdi-speedometer.qwik.mjs";
|
|
148
|
+
import { MdiSupport } from "./components/icons/mdi-support.qwik.mjs";
|
|
145
149
|
import { MdiTextEditOutline } from "./components/icons/mdi-text-edit-outline.qwik.mjs";
|
|
146
150
|
import { MdiUser } from "./components/icons/mdi-user.qwik.mjs";
|
|
147
151
|
import { MdiUserOutline } from "./components/icons/mdi-user-outline.qwik.mjs";
|
|
@@ -334,6 +338,8 @@ export {
|
|
|
334
338
|
MdiBellCurveCumulative,
|
|
335
339
|
MdiBrain,
|
|
336
340
|
MdiBrainFreezeOutline,
|
|
341
|
+
MdiBug,
|
|
342
|
+
MdiBugOutline,
|
|
337
343
|
MdiBuilding,
|
|
338
344
|
MdiCalendar,
|
|
339
345
|
MdiChartBar,
|
|
@@ -383,6 +389,7 @@ export {
|
|
|
383
389
|
MdiEmoticonDevil,
|
|
384
390
|
MdiError,
|
|
385
391
|
MdiErrorOutline,
|
|
392
|
+
MdiFeatureHighlight,
|
|
386
393
|
MdiGauge,
|
|
387
394
|
MdiGearOutline,
|
|
388
395
|
MdiGmail,
|
|
@@ -451,6 +458,7 @@ export {
|
|
|
451
458
|
MdiShieldCrown,
|
|
452
459
|
MdiShieldCrownOutline,
|
|
453
460
|
MdiSpeedometer,
|
|
461
|
+
MdiSupport,
|
|
454
462
|
MdiTerminal,
|
|
455
463
|
MdiTerminalLine,
|
|
456
464
|
MdiTextEditOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export * from './components/icons/mdi-bell-curve';
|
|
|
25
25
|
export * from './components/icons/mdi-bell-curve-cumulative';
|
|
26
26
|
export * from './components/icons/mdi-brain';
|
|
27
27
|
export * from './components/icons/mdi-brain-freeze-outline';
|
|
28
|
+
export * from './components/icons/mdi-bug';
|
|
29
|
+
export * from './components/icons/mdi-bug-outline';
|
|
28
30
|
export * from './components/icons/mdi-building';
|
|
29
31
|
export * from './components/icons/mdi-calendar';
|
|
30
32
|
export * from './components/icons/mdi-chart-bar';
|
|
@@ -74,6 +76,7 @@ export * from './components/icons/mdi-email-outline';
|
|
|
74
76
|
export * from './components/icons/mdi-emoticon-devil';
|
|
75
77
|
export * from './components/icons/mdi-error';
|
|
76
78
|
export * from './components/icons/mdi-error-outline';
|
|
79
|
+
export * from './components/icons/mdi-feature-highlight';
|
|
77
80
|
export * from './components/icons/mdi-gauge';
|
|
78
81
|
export * from './components/icons/mdi-gear-outline';
|
|
79
82
|
export * from './components/icons/mdi-gmail';
|
|
@@ -142,6 +145,7 @@ export * from './components/icons/mdi-secure-outline';
|
|
|
142
145
|
export * from './components/icons/mdi-shield-crown';
|
|
143
146
|
export * from './components/icons/mdi-shield-crown-outline';
|
|
144
147
|
export * from './components/icons/mdi-speedometer';
|
|
148
|
+
export * from './components/icons/mdi-support';
|
|
145
149
|
export * from './components/icons/mdi-text-edit-outline';
|
|
146
150
|
export * from './components/icons/mdi-user';
|
|
147
151
|
export * from './components/icons/mdi-user-outline';
|