@nr1e/qwik-icons 0.0.10 → 0.0.11
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-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 +18 -0
- package/lib/index.qwik.mjs +18 -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 +9 -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 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
|
@@ -43,9 +43,18 @@ const mdiGmail = require("./components/icons/mdi-gmail.qwik.cjs");
|
|
|
43
43
|
const mdiGoogle = require("./components/icons/mdi-google.qwik.cjs");
|
|
44
44
|
const mdiGoogleDrive = require("./components/icons/mdi-google-drive.qwik.cjs");
|
|
45
45
|
const mdiHamburgerMenu = require("./components/icons/mdi-hamburger-menu.qwik.cjs");
|
|
46
|
+
const mdiInformation = require("./components/icons/mdi-information.qwik.cjs");
|
|
47
|
+
const mdiInformationBox = require("./components/icons/mdi-information-box.qwik.cjs");
|
|
48
|
+
const mdiInformationBoxOutline = require("./components/icons/mdi-information-box-outline.qwik.cjs");
|
|
49
|
+
const mdiInformationOutline = require("./components/icons/mdi-information-outline.qwik.cjs");
|
|
46
50
|
const mdiInformationSlabBox = require("./components/icons/mdi-information-slab-box.qwik.cjs");
|
|
47
51
|
const mdiInformationSlabBoxOutline = require("./components/icons/mdi-information-slab-box-outline.qwik.cjs");
|
|
52
|
+
const mdiInformationSlabCircle = require("./components/icons/mdi-information-slab-circle.qwik.cjs");
|
|
53
|
+
const mdiInformationSlabCircleOutline = require("./components/icons/mdi-information-slab-circle-outline.qwik.cjs");
|
|
54
|
+
const mdiInformationVariantBox = require("./components/icons/mdi-information-variant-box.qwik.cjs");
|
|
48
55
|
const mdiInformationVariantBoxOutline = require("./components/icons/mdi-information-variant-box-outline.qwik.cjs");
|
|
56
|
+
const mdiInformationVariantCircle = require("./components/icons/mdi-information-variant-circle.qwik.cjs");
|
|
57
|
+
const mdiInformationVariantCircleOutline = require("./components/icons/mdi-information-variant-circle-outline.qwik.cjs");
|
|
49
58
|
const mdiInvite = require("./components/icons/mdi-invite.qwik.cjs");
|
|
50
59
|
const mdiInvoiceTextEditOutline = require("./components/icons/mdi-invoice-text-edit-outline.qwik.cjs");
|
|
51
60
|
const mdiKeyVariant = require("./components/icons/mdi-key-variant.qwik.cjs");
|
|
@@ -147,9 +156,18 @@ exports.MdiGmail = mdiGmail.MdiGmail;
|
|
|
147
156
|
exports.MdiGoogle = mdiGoogle.MdiGoogle;
|
|
148
157
|
exports.MdiGoogleDrive = mdiGoogleDrive.MdiGoogleDrive;
|
|
149
158
|
exports.MdiHamburgerMenu = mdiHamburgerMenu.MdiHamburgerMenu;
|
|
159
|
+
exports.MdiInformation = mdiInformation.MdiInformation;
|
|
160
|
+
exports.MdiInformationBox = mdiInformationBox.MdiInformationBox;
|
|
161
|
+
exports.MdiInformationBoxOutline = mdiInformationBoxOutline.MdiInformationBoxOutline;
|
|
162
|
+
exports.MdiInformationOutline = mdiInformationOutline.MdiInformationOutline;
|
|
150
163
|
exports.MdiInformationSlabBox = mdiInformationSlabBox.MdiInformationSlabBox;
|
|
151
164
|
exports.MdiInformationSlabBoxOutline = mdiInformationSlabBoxOutline.MdiInformationSlabBoxOutline;
|
|
165
|
+
exports.MdiInformationSlabCircle = mdiInformationSlabCircle.MdiInformationSlabCircle;
|
|
166
|
+
exports.MdiInformationSlabCircleOutline = mdiInformationSlabCircleOutline.MdiInformationSlabCircleOutline;
|
|
167
|
+
exports.MdiInformationVariantBox = mdiInformationVariantBox.MdiInformationVariantBox;
|
|
152
168
|
exports.MdiInformationVariantBoxOutline = mdiInformationVariantBoxOutline.MdiInformationVariantBoxOutline;
|
|
169
|
+
exports.MdiInformationVariantCircle = mdiInformationVariantCircle.MdiInformationVariantCircle;
|
|
170
|
+
exports.MdiInformationVariantCircleOutline = mdiInformationVariantCircleOutline.MdiInformationVariantCircleOutline;
|
|
153
171
|
exports.MdiInvite = mdiInvite.MdiInvite;
|
|
154
172
|
exports.MdiInvoiceTextEditOutline = mdiInvoiceTextEditOutline.MdiInvoiceTextEditOutline;
|
|
155
173
|
exports.MdiKeyVariant = mdiKeyVariant.MdiKeyVariant;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -41,9 +41,18 @@ import { MdiGmail } from "./components/icons/mdi-gmail.qwik.mjs";
|
|
|
41
41
|
import { MdiGoogle } from "./components/icons/mdi-google.qwik.mjs";
|
|
42
42
|
import { MdiGoogleDrive } from "./components/icons/mdi-google-drive.qwik.mjs";
|
|
43
43
|
import { MdiHamburgerMenu } from "./components/icons/mdi-hamburger-menu.qwik.mjs";
|
|
44
|
+
import { MdiInformation } from "./components/icons/mdi-information.qwik.mjs";
|
|
45
|
+
import { MdiInformationBox } from "./components/icons/mdi-information-box.qwik.mjs";
|
|
46
|
+
import { MdiInformationBoxOutline } from "./components/icons/mdi-information-box-outline.qwik.mjs";
|
|
47
|
+
import { MdiInformationOutline } from "./components/icons/mdi-information-outline.qwik.mjs";
|
|
44
48
|
import { MdiInformationSlabBox } from "./components/icons/mdi-information-slab-box.qwik.mjs";
|
|
45
49
|
import { MdiInformationSlabBoxOutline } from "./components/icons/mdi-information-slab-box-outline.qwik.mjs";
|
|
50
|
+
import { MdiInformationSlabCircle } from "./components/icons/mdi-information-slab-circle.qwik.mjs";
|
|
51
|
+
import { MdiInformationSlabCircleOutline } from "./components/icons/mdi-information-slab-circle-outline.qwik.mjs";
|
|
52
|
+
import { MdiInformationVariantBox } from "./components/icons/mdi-information-variant-box.qwik.mjs";
|
|
46
53
|
import { MdiInformationVariantBoxOutline } from "./components/icons/mdi-information-variant-box-outline.qwik.mjs";
|
|
54
|
+
import { MdiInformationVariantCircle } from "./components/icons/mdi-information-variant-circle.qwik.mjs";
|
|
55
|
+
import { MdiInformationVariantCircleOutline } from "./components/icons/mdi-information-variant-circle-outline.qwik.mjs";
|
|
47
56
|
import { MdiInvite } from "./components/icons/mdi-invite.qwik.mjs";
|
|
48
57
|
import { MdiInvoiceTextEditOutline } from "./components/icons/mdi-invoice-text-edit-outline.qwik.mjs";
|
|
49
58
|
import { MdiKeyVariant } from "./components/icons/mdi-key-variant.qwik.mjs";
|
|
@@ -170,9 +179,18 @@ export {
|
|
|
170
179
|
MdiGoogle,
|
|
171
180
|
MdiGoogleDrive,
|
|
172
181
|
MdiHamburgerMenu,
|
|
182
|
+
MdiInformation,
|
|
183
|
+
MdiInformationBox,
|
|
184
|
+
MdiInformationBoxOutline,
|
|
185
|
+
MdiInformationOutline,
|
|
173
186
|
MdiInformationSlabBox,
|
|
174
187
|
MdiInformationSlabBoxOutline,
|
|
188
|
+
MdiInformationSlabCircle,
|
|
189
|
+
MdiInformationSlabCircleOutline,
|
|
190
|
+
MdiInformationVariantBox,
|
|
175
191
|
MdiInformationVariantBoxOutline,
|
|
192
|
+
MdiInformationVariantCircle,
|
|
193
|
+
MdiInformationVariantCircleOutline,
|
|
176
194
|
MdiInvite,
|
|
177
195
|
MdiInvoiceTextEditOutline,
|
|
178
196
|
MdiKeyVariant,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -41,9 +41,18 @@ export * from './components/icons/mdi-gmail';
|
|
|
41
41
|
export * from './components/icons/mdi-google';
|
|
42
42
|
export * from './components/icons/mdi-google-drive';
|
|
43
43
|
export * from './components/icons/mdi-hamburger-menu';
|
|
44
|
+
export * from './components/icons/mdi-information';
|
|
45
|
+
export * from './components/icons/mdi-information-box';
|
|
46
|
+
export * from './components/icons/mdi-information-box-outline';
|
|
47
|
+
export * from './components/icons/mdi-information-outline';
|
|
44
48
|
export * from './components/icons/mdi-information-slab-box';
|
|
45
49
|
export * from './components/icons/mdi-information-slab-box-outline';
|
|
50
|
+
export * from './components/icons/mdi-information-slab-circle';
|
|
51
|
+
export * from './components/icons/mdi-information-slab-circle-outline';
|
|
52
|
+
export * from './components/icons/mdi-information-variant-box';
|
|
46
53
|
export * from './components/icons/mdi-information-variant-box-outline';
|
|
54
|
+
export * from './components/icons/mdi-information-variant-circle';
|
|
55
|
+
export * from './components/icons/mdi-information-variant-circle-outline';
|
|
47
56
|
export * from './components/icons/mdi-invite';
|
|
48
57
|
export * from './components/icons/mdi-invoice-text-edit-outline';
|
|
49
58
|
export * from './components/icons/mdi-key-variant';
|