@nr1e/qwik-icons 0.0.0-snapshot-20260125182506 → 0.0.0-snapshot-20260126135853
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-add-bold.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-bold.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-box-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-box-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-slab-circle-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-slab-circle-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-slab-circle.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-slab-circle.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-variant-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-variant-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-variant-circle-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-variant-circle-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information-variant-circle.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information-variant-circle.qwik.mjs +16 -0
- package/lib/components/icons/mdi-information.qwik.cjs +16 -0
- package/lib/components/icons/mdi-information.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +24 -0
- package/lib/index.qwik.mjs +24 -0
- package/lib-types/components/icons/mdi-add-bold.d.ts +2 -0
- package/lib-types/components/icons/mdi-add-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-add.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-box-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-slab-circle-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-slab-circle.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-variant-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-variant-circle-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-information-variant-circle.d.ts +2 -0
- package/lib-types/components/icons/mdi-information.d.ts +2 -0
- package/lib-types/index.d.ts +12 -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 MdiAddBold = 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 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBold = MdiAddBold;
|
|
@@ -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 MdiAddBold = 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 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBold
|
|
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 MdiAddBox = 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: "M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBox = MdiAddBox;
|
|
@@ -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 MdiAddBox = 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: "M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBox
|
|
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 MdiAdd = 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 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAdd = MdiAdd;
|
|
@@ -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 MdiAdd = 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 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAdd
|
|
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 MdiInformationBoxOutline = 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 9h-2V7h2zm0 8h-2v-6h2zM5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationBoxOutline = MdiInformationBoxOutline;
|
|
@@ -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 MdiInformationBoxOutline = 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 9h-2V7h2zm0 8h-2v-6h2zM5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationBoxOutline
|
|
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 MdiInformationBox = 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 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m8 6V7h-2v2zm0 8v-6h-2v6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationBox = MdiInformationBox;
|
|
@@ -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 MdiInformationBox = 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 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m8 6V7h-2v2zm0 8v-6h-2v6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationBox
|
|
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 MdiInformationOutline = 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: "M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationOutline = MdiInformationOutline;
|
|
@@ -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 MdiInformationOutline = 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: "M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationOutline
|
|
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 MdiInformationSlabCircleOutline = 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: "M11 7v2h2V7zm3 10v-2h-1v-4h-3v2h1v2h-1v2zm8-5c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationSlabCircleOutline = MdiInformationSlabCircleOutline;
|
|
@@ -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 MdiInformationSlabCircleOutline = 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: "M11 7v2h2V7zm3 10v-2h-1v-4h-3v2h1v2h-1v2zm8-5c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationSlabCircleOutline
|
|
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 MdiInformationSlabCircle = 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 22c5.5 0 10-4.5 10-10S17.5 2 12 2S2 6.5 2 12s4.5 10 10 10M11 7h2v2h-2zm3 10h-4v-2h1v-2h-1v-2h3v4h1z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationSlabCircle = MdiInformationSlabCircle;
|
|
@@ -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 MdiInformationSlabCircle = 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 22c5.5 0 10-4.5 10-10S17.5 2 12 2S2 6.5 2 12s4.5 10 10 10M11 7h2v2h-2zm3 10h-4v-2h1v-2h-1v-2h3v4h1z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationSlabCircle
|
|
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 MdiInformationVariantBox = 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 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m7.3 4.29c-.19.21-.3.45-.3.71c0 .27.11.5.3.71c.2.19.44.29.7.29c.27 0 .5-.1.71-.29c.19-.21.29-.44.29-.71c0-.26-.1-.5-.29-.71C13.5 7.11 13.27 7 13 7c-.26 0-.5.11-.7.29m-2.5 4.68c-.1.09-.1.1-.03.2l.05.08l.03.06c.07.13.08.13.19.05c.13-.09.35-.23.72-.45c.92-.59.74.09.33 1.59c-.22.83-.5 1.89-.71 3.12c-.24 1.75 1.33.85 1.74.58c.38-.24 1.32-.9 1.54-1.05l.04-.02c.12-.09.07-.13-.02-.27l-.06-.08c-.08-.11-.16-.03-.16-.03l-.16.11c-.45.3-1.07.73-1.17.39c-.09-.25.28-1.61.66-3c.17-.61.34-1.25.47-1.78l.02-.06c.07-.44.22-1.29-.51-1.23c-.8.07-2.97 1.79-2.97 1.79"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationVariantBox = MdiInformationVariantBox;
|
|
@@ -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 MdiInformationVariantBox = 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 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41c-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m7.3 4.29c-.19.21-.3.45-.3.71c0 .27.11.5.3.71c.2.19.44.29.7.29c.27 0 .5-.1.71-.29c.19-.21.29-.44.29-.71c0-.26-.1-.5-.29-.71C13.5 7.11 13.27 7 13 7c-.26 0-.5.11-.7.29m-2.5 4.68c-.1.09-.1.1-.03.2l.05.08l.03.06c.07.13.08.13.19.05c.13-.09.35-.23.72-.45c.92-.59.74.09.33 1.59c-.22.83-.5 1.89-.71 3.12c-.24 1.75 1.33.85 1.74.58c.38-.24 1.32-.9 1.54-1.05l.04-.02c.12-.09.07-.13-.02-.27l-.06-.08c-.08-.11-.16-.03-.16-.03l-.16.11c-.45.3-1.07.73-1.17.39c-.09-.25.28-1.61.66-3c.17-.61.34-1.25.47-1.78l.02-.06c.07-.44.22-1.29-.51-1.23c-.8.07-2.97 1.79-2.97 1.79"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationVariantBox
|
|
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 MdiInformationVariantCircleOutline = 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.3 7.29c.2-.18.44-.29.7-.29c.27 0 .5.11.71.29c.19.21.29.45.29.71c0 .27-.1.5-.29.71c-.21.19-.44.29-.71.29c-.26 0-.5-.1-.7-.29c-.19-.21-.3-.44-.3-.71c0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78c-.38 1.39-.75 2.75-.66 3c.1.34.72-.09 1.17-.39c.06-.04.11-.08.16-.11c0 0 .08-.08.16.03c.02.03.04.06.06.08c.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05c-.41.27-1.98 1.17-1.74-.58c.21-1.23.49-2.29.71-3.12c.41-1.5.59-2.18-.33-1.59c-.37.22-.59.36-.72.45c-.11.08-.12.08-.19-.05l-.03-.06l-.05-.08c-.07-.1-.07-.11.03-.2M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationVariantCircleOutline = MdiInformationVariantCircleOutline;
|
|
@@ -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 MdiInformationVariantCircleOutline = 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.3 7.29c.2-.18.44-.29.7-.29c.27 0 .5.11.71.29c.19.21.29.45.29.71c0 .27-.1.5-.29.71c-.21.19-.44.29-.71.29c-.26 0-.5-.1-.7-.29c-.19-.21-.3-.44-.3-.71c0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78c-.38 1.39-.75 2.75-.66 3c.1.34.72-.09 1.17-.39c.06-.04.11-.08.16-.11c0 0 .08-.08.16.03c.02.03.04.06.06.08c.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05c-.41.27-1.98 1.17-1.74-.58c.21-1.23.49-2.29.71-3.12c.41-1.5.59-2.18-.33-1.59c-.37.22-.59.36-.72.45c-.11.08-.12.08-.19-.05l-.03-.06l-.05-.08c-.07-.1-.07-.11.03-.2M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationVariantCircleOutline
|
|
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 MdiInformationVariantCircle = 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 22c5.5 0 10-4.5 10-10S17.5 2 12 2S2 6.5 2 12s4.5 10 10 10m.3-14.71c.2-.18.44-.29.7-.29c.27 0 .5.11.71.29c.19.21.29.45.29.71c0 .27-.1.5-.29.71c-.21.19-.44.29-.71.29c-.26 0-.5-.1-.7-.29c-.19-.21-.3-.44-.3-.71c0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78c-.38 1.39-.75 2.75-.66 3c.1.34.72-.09 1.17-.39c.06-.04.11-.08.16-.11c0 0 .08-.08.16.03c.02.03.04.06.06.08c.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05c-.41.27-1.98 1.17-1.74-.58c.21-1.23.49-2.29.71-3.12c.41-1.5.59-2.18-.33-1.59c-.37.22-.59.36-.72.45c-.11.08-.12.08-.19-.05l-.03-.06l-.05-.08c-.07-.1-.07-.11.03-.2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformationVariantCircle = MdiInformationVariantCircle;
|
|
@@ -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 MdiInformationVariantCircle = 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 22c5.5 0 10-4.5 10-10S17.5 2 12 2S2 6.5 2 12s4.5 10 10 10m.3-14.71c.2-.18.44-.29.7-.29c.27 0 .5.11.71.29c.19.21.29.45.29.71c0 .27-.1.5-.29.71c-.21.19-.44.29-.71.29c-.26 0-.5-.1-.7-.29c-.19-.21-.3-.44-.3-.71c0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78c-.38 1.39-.75 2.75-.66 3c.1.34.72-.09 1.17-.39c.06-.04.11-.08.16-.11c0 0 .08-.08.16.03c.02.03.04.06.06.08c.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05c-.41.27-1.98 1.17-1.74-.58c.21-1.23.49-2.29.71-3.12c.41-1.5.59-2.18-.33-1.59c-.37.22-.59.36-.72.45c-.11.08-.12.08-.19-.05l-.03-.06l-.05-.08c-.07-.1-.07-.11.03-.2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformationVariantCircle
|
|
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 MdiInformation = 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 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInformation = MdiInformation;
|
|
@@ -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 MdiInformation = 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 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInformation
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const svg = require("./components/svg.qwik.cjs");
|
|
4
|
+
const mdiAdd = require("./components/icons/mdi-add.qwik.cjs");
|
|
5
|
+
const mdiAddBold = require("./components/icons/mdi-add-bold.qwik.cjs");
|
|
6
|
+
const mdiAddBox = require("./components/icons/mdi-add-box.qwik.cjs");
|
|
4
7
|
const mdiAddCircle = require("./components/icons/mdi-add-circle.qwik.cjs");
|
|
5
8
|
const mdiAddCircleOutline = require("./components/icons/mdi-add-circle-outline.qwik.cjs");
|
|
6
9
|
const mdiAirHorn = require("./components/icons/mdi-air-horn.qwik.cjs");
|
|
@@ -43,9 +46,18 @@ const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
|
43
46
|
const mdiGoogle = require("./components/icons/mdi-google.qwik.cjs");
|
|
44
47
|
const mdiGoogleDrive = require("./components/icons/mdi-google-drive.qwik.cjs");
|
|
45
48
|
const mdiHamburgerMenu = require("./components/icons/mdi-hamburger-menu.qwik.cjs");
|
|
49
|
+
const mdiInformation = require("./components/icons/mdi-information.qwik.cjs");
|
|
50
|
+
const mdiInformationBox = require("./components/icons/mdi-information-box.qwik.cjs");
|
|
51
|
+
const mdiInformationBoxOutline = require("./components/icons/mdi-information-box-outline.qwik.cjs");
|
|
52
|
+
const mdiInformationOutline = require("./components/icons/mdi-information-outline.qwik.cjs");
|
|
46
53
|
const mdiInformationSlabBox = require("./components/icons/mdi-information-slab-box.qwik.cjs");
|
|
47
54
|
const mdiInformationSlabBoxOutline = require("./components/icons/mdi-information-slab-box-outline.qwik.cjs");
|
|
55
|
+
const mdiInformationSlabCircle = require("./components/icons/mdi-information-slab-circle.qwik.cjs");
|
|
56
|
+
const mdiInformationSlabCircleOutline = require("./components/icons/mdi-information-slab-circle-outline.qwik.cjs");
|
|
57
|
+
const mdiInformationVariantBox = require("./components/icons/mdi-information-variant-box.qwik.cjs");
|
|
48
58
|
const mdiInformationVariantBoxOutline = require("./components/icons/mdi-information-variant-box-outline.qwik.cjs");
|
|
59
|
+
const mdiInformationVariantCircle = require("./components/icons/mdi-information-variant-circle.qwik.cjs");
|
|
60
|
+
const mdiInformationVariantCircleOutline = require("./components/icons/mdi-information-variant-circle-outline.qwik.cjs");
|
|
49
61
|
const mdiInvite = require("./components/icons/mdi-invite.qwik.cjs");
|
|
50
62
|
const mdiInvoiceTextEditOutline = require("./components/icons/mdi-invoice-text-edit-outline.qwik.cjs");
|
|
51
63
|
const mdiKeyVariant = require("./components/icons/mdi-key-variant.qwik.cjs");
|
|
@@ -105,6 +117,9 @@ const clientloopLogoLightBlue = require("./components/brands/clientloop-logo-lig
|
|
|
105
117
|
const clientloopLogoPrimary = require("./components/brands/clientloop-logo-primary.qwik.cjs");
|
|
106
118
|
const clientloopLogoWhite = require("./components/brands/clientloop-logo-white.qwik.cjs");
|
|
107
119
|
exports.Svg = svg.Svg;
|
|
120
|
+
exports.MdiAdd = mdiAdd.MdiAdd;
|
|
121
|
+
exports.MdiAddBold = mdiAddBold.MdiAddBold;
|
|
122
|
+
exports.MdiAddBox = mdiAddBox.MdiAddBox;
|
|
108
123
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
109
124
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
110
125
|
exports.MdiAirHorn = mdiAirHorn.MdiAirHorn;
|
|
@@ -147,9 +162,18 @@ exports.MdiGmail = mdiGmail.MdiGmail;
|
|
|
147
162
|
exports.MdiGoogle = mdiGoogle.MdiGoogle;
|
|
148
163
|
exports.MdiGoogleDrive = mdiGoogleDrive.MdiGoogleDrive;
|
|
149
164
|
exports.MdiHamburgerMenu = mdiHamburgerMenu.MdiHamburgerMenu;
|
|
165
|
+
exports.MdiInformation = mdiInformation.MdiInformation;
|
|
166
|
+
exports.MdiInformationBox = mdiInformationBox.MdiInformationBox;
|
|
167
|
+
exports.MdiInformationBoxOutline = mdiInformationBoxOutline.MdiInformationBoxOutline;
|
|
168
|
+
exports.MdiInformationOutline = mdiInformationOutline.MdiInformationOutline;
|
|
150
169
|
exports.MdiInformationSlabBox = mdiInformationSlabBox.MdiInformationSlabBox;
|
|
151
170
|
exports.MdiInformationSlabBoxOutline = mdiInformationSlabBoxOutline.MdiInformationSlabBoxOutline;
|
|
171
|
+
exports.MdiInformationSlabCircle = mdiInformationSlabCircle.MdiInformationSlabCircle;
|
|
172
|
+
exports.MdiInformationSlabCircleOutline = mdiInformationSlabCircleOutline.MdiInformationSlabCircleOutline;
|
|
173
|
+
exports.MdiInformationVariantBox = mdiInformationVariantBox.MdiInformationVariantBox;
|
|
152
174
|
exports.MdiInformationVariantBoxOutline = mdiInformationVariantBoxOutline.MdiInformationVariantBoxOutline;
|
|
175
|
+
exports.MdiInformationVariantCircle = mdiInformationVariantCircle.MdiInformationVariantCircle;
|
|
176
|
+
exports.MdiInformationVariantCircleOutline = mdiInformationVariantCircleOutline.MdiInformationVariantCircleOutline;
|
|
153
177
|
exports.MdiInvite = mdiInvite.MdiInvite;
|
|
154
178
|
exports.MdiInvoiceTextEditOutline = mdiInvoiceTextEditOutline.MdiInvoiceTextEditOutline;
|
|
155
179
|
exports.MdiKeyVariant = mdiKeyVariant.MdiKeyVariant;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Svg } from "./components/svg.qwik.mjs";
|
|
2
|
+
import { MdiAdd } from "./components/icons/mdi-add.qwik.mjs";
|
|
3
|
+
import { MdiAddBold } from "./components/icons/mdi-add-bold.qwik.mjs";
|
|
4
|
+
import { MdiAddBox } from "./components/icons/mdi-add-box.qwik.mjs";
|
|
2
5
|
import { MdiAddCircle } from "./components/icons/mdi-add-circle.qwik.mjs";
|
|
3
6
|
import { MdiAddCircleOutline } from "./components/icons/mdi-add-circle-outline.qwik.mjs";
|
|
4
7
|
import { MdiAirHorn } from "./components/icons/mdi-air-horn.qwik.mjs";
|
|
@@ -41,9 +44,18 @@ import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
|
41
44
|
import { MdiGoogle } from "./components/icons/mdi-google.qwik.mjs";
|
|
42
45
|
import { MdiGoogleDrive } from "./components/icons/mdi-google-drive.qwik.mjs";
|
|
43
46
|
import { MdiHamburgerMenu } from "./components/icons/mdi-hamburger-menu.qwik.mjs";
|
|
47
|
+
import { MdiInformation } from "./components/icons/mdi-information.qwik.mjs";
|
|
48
|
+
import { MdiInformationBox } from "./components/icons/mdi-information-box.qwik.mjs";
|
|
49
|
+
import { MdiInformationBoxOutline } from "./components/icons/mdi-information-box-outline.qwik.mjs";
|
|
50
|
+
import { MdiInformationOutline } from "./components/icons/mdi-information-outline.qwik.mjs";
|
|
44
51
|
import { MdiInformationSlabBox } from "./components/icons/mdi-information-slab-box.qwik.mjs";
|
|
45
52
|
import { MdiInformationSlabBoxOutline } from "./components/icons/mdi-information-slab-box-outline.qwik.mjs";
|
|
53
|
+
import { MdiInformationSlabCircle } from "./components/icons/mdi-information-slab-circle.qwik.mjs";
|
|
54
|
+
import { MdiInformationSlabCircleOutline } from "./components/icons/mdi-information-slab-circle-outline.qwik.mjs";
|
|
55
|
+
import { MdiInformationVariantBox } from "./components/icons/mdi-information-variant-box.qwik.mjs";
|
|
46
56
|
import { MdiInformationVariantBoxOutline } from "./components/icons/mdi-information-variant-box-outline.qwik.mjs";
|
|
57
|
+
import { MdiInformationVariantCircle } from "./components/icons/mdi-information-variant-circle.qwik.mjs";
|
|
58
|
+
import { MdiInformationVariantCircleOutline } from "./components/icons/mdi-information-variant-circle-outline.qwik.mjs";
|
|
47
59
|
import { MdiInvite } from "./components/icons/mdi-invite.qwik.mjs";
|
|
48
60
|
import { MdiInvoiceTextEditOutline } from "./components/icons/mdi-invoice-text-edit-outline.qwik.mjs";
|
|
49
61
|
import { MdiKeyVariant } from "./components/icons/mdi-key-variant.qwik.mjs";
|
|
@@ -128,6 +140,9 @@ export {
|
|
|
128
140
|
FlagZa4x3,
|
|
129
141
|
LogosGoogleIcon,
|
|
130
142
|
LogosMicrosoftIcon,
|
|
143
|
+
MdiAdd,
|
|
144
|
+
MdiAddBold,
|
|
145
|
+
MdiAddBox,
|
|
131
146
|
MdiAddCircle,
|
|
132
147
|
MdiAddCircleOutline,
|
|
133
148
|
MdiAirHorn,
|
|
@@ -170,9 +185,18 @@ export {
|
|
|
170
185
|
MdiGoogle,
|
|
171
186
|
MdiGoogleDrive,
|
|
172
187
|
MdiHamburgerMenu,
|
|
188
|
+
MdiInformation,
|
|
189
|
+
MdiInformationBox,
|
|
190
|
+
MdiInformationBoxOutline,
|
|
191
|
+
MdiInformationOutline,
|
|
173
192
|
MdiInformationSlabBox,
|
|
174
193
|
MdiInformationSlabBoxOutline,
|
|
194
|
+
MdiInformationSlabCircle,
|
|
195
|
+
MdiInformationSlabCircleOutline,
|
|
196
|
+
MdiInformationVariantBox,
|
|
175
197
|
MdiInformationVariantBoxOutline,
|
|
198
|
+
MdiInformationVariantCircle,
|
|
199
|
+
MdiInformationVariantCircleOutline,
|
|
176
200
|
MdiInvite,
|
|
177
201
|
MdiInvoiceTextEditOutline,
|
|
178
202
|
MdiKeyVariant,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from './components/svg';
|
|
2
|
+
export * from './components/icons/mdi-add';
|
|
3
|
+
export * from './components/icons/mdi-add-bold';
|
|
4
|
+
export * from './components/icons/mdi-add-box';
|
|
2
5
|
export * from './components/icons/mdi-add-circle';
|
|
3
6
|
export * from './components/icons/mdi-add-circle-outline';
|
|
4
7
|
export * from './components/icons/mdi-air-horn';
|
|
@@ -41,9 +44,18 @@ export * from './components/icons/mdi-gmail';
|
|
|
41
44
|
export * from './components/icons/mdi-google';
|
|
42
45
|
export * from './components/icons/mdi-google-drive';
|
|
43
46
|
export * from './components/icons/mdi-hamburger-menu';
|
|
47
|
+
export * from './components/icons/mdi-information';
|
|
48
|
+
export * from './components/icons/mdi-information-box';
|
|
49
|
+
export * from './components/icons/mdi-information-box-outline';
|
|
50
|
+
export * from './components/icons/mdi-information-outline';
|
|
44
51
|
export * from './components/icons/mdi-information-slab-box';
|
|
45
52
|
export * from './components/icons/mdi-information-slab-box-outline';
|
|
53
|
+
export * from './components/icons/mdi-information-slab-circle';
|
|
54
|
+
export * from './components/icons/mdi-information-slab-circle-outline';
|
|
55
|
+
export * from './components/icons/mdi-information-variant-box';
|
|
46
56
|
export * from './components/icons/mdi-information-variant-box-outline';
|
|
57
|
+
export * from './components/icons/mdi-information-variant-circle';
|
|
58
|
+
export * from './components/icons/mdi-information-variant-circle-outline';
|
|
47
59
|
export * from './components/icons/mdi-invite';
|
|
48
60
|
export * from './components/icons/mdi-invoice-text-edit-outline';
|
|
49
61
|
export * from './components/icons/mdi-key-variant';
|