@nr1e/qwik-icons 0.0.30 → 0.0.32
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-cell-phone.qwik.cjs +16 -0
- package/lib/components/icons/mdi-cell-phone.qwik.mjs +16 -0
- package/lib/components/icons/mdi-eye-lock-open-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-eye-lock-open-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-eye-lock-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-eye-lock-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-eye-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-eye-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-eye.qwik.cjs +16 -0
- package/lib/components/icons/mdi-eye.qwik.mjs +16 -0
- package/lib/components/icons/mdi-phone-in-talk-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-phone-in-talk-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-phone-in-talk.qwik.cjs +16 -0
- package/lib/components/icons/mdi-phone-in-talk.qwik.mjs +16 -0
- package/lib/components/icons/mdi-phone-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-phone-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-phone.qwik.cjs +16 -0
- package/lib/components/icons/mdi-phone.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +18 -0
- package/lib/index.qwik.mjs +18 -0
- package/lib-types/components/icons/mdi-cell-phone.d.ts +2 -0
- package/lib-types/components/icons/mdi-eye-lock-open-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-eye-lock-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-eye-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-eye.d.ts +2 -0
- package/lib-types/components/icons/mdi-phone-in-talk-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-phone-in-talk.d.ts +2 -0
- package/lib-types/components/icons/mdi-phone-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-phone.d.ts +2 -0
- package/lib-types/index.d.ts +9 -0
- package/package.json +8 -8
|
@@ -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 MdiCellPhone = 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 19H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCellPhone = MdiCellPhone;
|
|
@@ -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 MdiCellPhone = 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 19H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCellPhone
|
|
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 MdiEyeLockOpenOutline = 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 19.5c-5 0-9.3-3.1-11-7.5c1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.1.4-.3.7-.5 1.1c-.5-1.2-1.5-2.2-2.8-2.7C17.9 8 15.1 6.5 12 6.5c-3.8 0-7.2 2.1-8.8 5.5c1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7zM12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3q.6 0 1.2-.3v-.2c0-1.3.7-2.5 1.7-3.4C14.5 9.9 13.4 9 12 9m8.8 8h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEyeLockOpenOutline = MdiEyeLockOpenOutline;
|
|
@@ -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 MdiEyeLockOpenOutline = 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 19.5c-5 0-9.3-3.1-11-7.5c1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.1.4-.3.7-.5 1.1c-.5-1.2-1.5-2.2-2.8-2.7C17.9 8 15.1 6.5 12 6.5c-3.8 0-7.2 2.1-8.8 5.5c1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7zM12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3q.6 0 1.2-.3v-.2c0-1.3.7-2.5 1.7-3.4C14.5 9.9 13.4 9 12 9m8.8 8h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEyeLockOpenOutline
|
|
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 MdiEyeLockOutline = 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.8 17v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM15 12c-.9.7-1.5 1.6-1.7 2.7c-.4.2-.8.3-1.3.3c-1.7 0-3-1.3-3-3s1.3-3 3-3s3 1.3 3 3m-3 7.5c-5 0-9.3-3.1-11-7.5c1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.2.5-.5 1-.7 1.5c-.4-.7-.9-1.3-1.6-1.7c-1.7-3.3-5-5.3-8.7-5.3c-3.8 0-7.2 2.1-8.8 5.5c1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEyeLockOutline = MdiEyeLockOutline;
|
|
@@ -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 MdiEyeLockOutline = 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.8 17v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM15 12c-.9.7-1.5 1.6-1.7 2.7c-.4.2-.8.3-1.3.3c-1.7 0-3-1.3-3-3s1.3-3 3-3s3 1.3 3 3m-3 7.5c-5 0-9.3-3.1-11-7.5c1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.2.5-.5 1-.7 1.5c-.4-.7-.9-1.3-1.6-1.7c-1.7-3.3-5-5.3-8.7-5.3c-3.8 0-7.2 2.1-8.8 5.5c1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEyeLockOutline
|
|
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 MdiEyeOutline = 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 9a3 3 0 0 1 3 3a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3m0-4.5c5 0 9.27 3.11 11 7.5c-1.73 4.39-6 7.5-11 7.5S2.73 16.39 1 12c1.73-4.39 6-7.5 11-7.5M3.18 12a9.821 9.821 0 0 0 17.64 0a9.821 9.821 0 0 0-17.64 0"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEyeOutline = MdiEyeOutline;
|
|
@@ -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 MdiEyeOutline = 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 9a3 3 0 0 1 3 3a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3m0-4.5c5 0 9.27 3.11 11 7.5c-1.73 4.39-6 7.5-11 7.5S2.73 16.39 1 12c1.73-4.39 6-7.5 11-7.5M3.18 12a9.821 9.821 0 0 0 17.64 0a9.821 9.821 0 0 0-17.64 0"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEyeOutline
|
|
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 MdiEye = 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 9a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5a5 5 0 0 1 5-5a5 5 0 0 1 5 5a5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiEye = MdiEye;
|
|
@@ -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 MdiEye = 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 9a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5a5 5 0 0 1 5-5a5 5 0 0 1 5 5a5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiEye
|
|
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 MdiPhoneInTalkOutline = 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 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1c-.3-1.1-.5-2.4-.5-3.6c0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1c0 9.4 7.6 17 17 17c.5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm-4-7h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPhoneInTalkOutline = MdiPhoneInTalkOutline;
|
|
@@ -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 MdiPhoneInTalkOutline = 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 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1c-.3-1.1-.5-2.4-.5-3.6c0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1c0 9.4 7.6 17 17 17c.5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm-4-7h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPhoneInTalkOutline
|
|
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 MdiPhoneInTalk = 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: "M15 12h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7m1 3.5c-1.25 0-2.45-.2-3.57-.57c-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1a17 17 0 0 0 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPhoneInTalk = MdiPhoneInTalk;
|
|
@@ -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 MdiPhoneInTalk = 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: "M15 12h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7m1 3.5c-1.25 0-2.45-.2-3.57-.57c-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1a17 17 0 0 0 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPhoneInTalk
|
|
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 MdiPhoneOutline = 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 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1c-.3-1.1-.5-2.4-.5-3.6c0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1c0 9.4 7.6 17 17 17c.5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPhoneOutline = MdiPhoneOutline;
|
|
@@ -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 MdiPhoneOutline = 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 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1c-.3-1.1-.5-2.4-.5-3.6c0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1c0 9.4 7.6 17 17 17c.5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPhoneOutline
|
|
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 MdiPhone = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25c1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57c.11.35.03.74-.25 1.02z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPhone = MdiPhone;
|
|
@@ -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 MdiPhone = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25c1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57c.11.35.03.74-.25 1.02z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPhone
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -92,6 +92,10 @@ const mdiEmailOutline = require("./components/icons/mdi-email-outline.qwik.cjs")
|
|
|
92
92
|
const mdiEmoticonDevil = require("./components/icons/mdi-emoticon-devil.qwik.cjs");
|
|
93
93
|
const mdiError = require("./components/icons/mdi-error.qwik.cjs");
|
|
94
94
|
const mdiErrorOutline = require("./components/icons/mdi-error-outline.qwik.cjs");
|
|
95
|
+
const mdiEye = require("./components/icons/mdi-eye.qwik.cjs");
|
|
96
|
+
const mdiEyeLockOpenOutline = require("./components/icons/mdi-eye-lock-open-outline.qwik.cjs");
|
|
97
|
+
const mdiEyeLockOutline = require("./components/icons/mdi-eye-lock-outline.qwik.cjs");
|
|
98
|
+
const mdiEyeOutline = require("./components/icons/mdi-eye-outline.qwik.cjs");
|
|
95
99
|
const mdiFeatureHighlight = require("./components/icons/mdi-feature-highlight.qwik.cjs");
|
|
96
100
|
const mdiFileDocumentArrowRight = require("./components/icons/mdi-file-document-arrow-right.qwik.cjs");
|
|
97
101
|
const mdiFileDocumentArrowRightOutline = require("./components/icons/mdi-file-document-arrow-right-outline.qwik.cjs");
|
|
@@ -163,6 +167,11 @@ const mdiPencilOutline = require("./components/icons/mdi-pencil-outline.qwik.cjs
|
|
|
163
167
|
const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
|
|
164
168
|
const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
|
|
165
169
|
const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
|
|
170
|
+
const mdiPhone = require("./components/icons/mdi-phone.qwik.cjs");
|
|
171
|
+
const mdiPhoneInTalk = require("./components/icons/mdi-phone-in-talk.qwik.cjs");
|
|
172
|
+
const mdiPhoneInTalkOutline = require("./components/icons/mdi-phone-in-talk-outline.qwik.cjs");
|
|
173
|
+
const mdiPhoneOutline = require("./components/icons/mdi-phone-outline.qwik.cjs");
|
|
174
|
+
const mdiCellPhone = require("./components/icons/mdi-cell-phone.qwik.cjs");
|
|
166
175
|
const mdiPipeDisconnected = require("./components/icons/mdi-pipe-disconnected.qwik.cjs");
|
|
167
176
|
const mdiPlusBoxOutline = require("./components/icons/mdi-plus-box-outline.qwik.cjs");
|
|
168
177
|
const mdiPulse = require("./components/icons/mdi-pulse.qwik.cjs");
|
|
@@ -388,6 +397,10 @@ exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
|
388
397
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
389
398
|
exports.MdiError = mdiError.MdiError;
|
|
390
399
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
400
|
+
exports.MdiEye = mdiEye.MdiEye;
|
|
401
|
+
exports.MdiEyeLockOpenOutline = mdiEyeLockOpenOutline.MdiEyeLockOpenOutline;
|
|
402
|
+
exports.MdiEyeLockOutline = mdiEyeLockOutline.MdiEyeLockOutline;
|
|
403
|
+
exports.MdiEyeOutline = mdiEyeOutline.MdiEyeOutline;
|
|
391
404
|
exports.MdiFeatureHighlight = mdiFeatureHighlight.MdiFeatureHighlight;
|
|
392
405
|
exports.MdiFileDocumentArrowRight = mdiFileDocumentArrowRight.MdiFileDocumentArrowRight;
|
|
393
406
|
exports.MdiFileDocumentArrowRightOutline = mdiFileDocumentArrowRightOutline.MdiFileDocumentArrowRightOutline;
|
|
@@ -459,6 +472,11 @@ exports.MdiPencilOutline = mdiPencilOutline.MdiPencilOutline;
|
|
|
459
472
|
exports.MdiPercent = mdiPercent.MdiPercent;
|
|
460
473
|
exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
|
|
461
474
|
exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
|
|
475
|
+
exports.MdiPhone = mdiPhone.MdiPhone;
|
|
476
|
+
exports.MdiPhoneInTalk = mdiPhoneInTalk.MdiPhoneInTalk;
|
|
477
|
+
exports.MdiPhoneInTalkOutline = mdiPhoneInTalkOutline.MdiPhoneInTalkOutline;
|
|
478
|
+
exports.MdiPhoneOutline = mdiPhoneOutline.MdiPhoneOutline;
|
|
479
|
+
exports.MdiCellPhone = mdiCellPhone.MdiCellPhone;
|
|
462
480
|
exports.MdiPipeDisconnected = mdiPipeDisconnected.MdiPipeDisconnected;
|
|
463
481
|
exports.MdiPlusBoxOutline = mdiPlusBoxOutline.MdiPlusBoxOutline;
|
|
464
482
|
exports.MdiPulse = mdiPulse.MdiPulse;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -90,6 +90,10 @@ import { MdiEmailOutline } from "./components/icons/mdi-email-outline.qwik.mjs";
|
|
|
90
90
|
import { MdiEmoticonDevil } from "./components/icons/mdi-emoticon-devil.qwik.mjs";
|
|
91
91
|
import { MdiError } from "./components/icons/mdi-error.qwik.mjs";
|
|
92
92
|
import { MdiErrorOutline } from "./components/icons/mdi-error-outline.qwik.mjs";
|
|
93
|
+
import { MdiEye } from "./components/icons/mdi-eye.qwik.mjs";
|
|
94
|
+
import { MdiEyeLockOpenOutline } from "./components/icons/mdi-eye-lock-open-outline.qwik.mjs";
|
|
95
|
+
import { MdiEyeLockOutline } from "./components/icons/mdi-eye-lock-outline.qwik.mjs";
|
|
96
|
+
import { MdiEyeOutline } from "./components/icons/mdi-eye-outline.qwik.mjs";
|
|
93
97
|
import { MdiFeatureHighlight } from "./components/icons/mdi-feature-highlight.qwik.mjs";
|
|
94
98
|
import { MdiFileDocumentArrowRight } from "./components/icons/mdi-file-document-arrow-right.qwik.mjs";
|
|
95
99
|
import { MdiFileDocumentArrowRightOutline } from "./components/icons/mdi-file-document-arrow-right-outline.qwik.mjs";
|
|
@@ -161,6 +165,11 @@ import { MdiPencilOutline } from "./components/icons/mdi-pencil-outline.qwik.mjs
|
|
|
161
165
|
import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
|
|
162
166
|
import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
|
|
163
167
|
import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
|
|
168
|
+
import { MdiPhone } from "./components/icons/mdi-phone.qwik.mjs";
|
|
169
|
+
import { MdiPhoneInTalk } from "./components/icons/mdi-phone-in-talk.qwik.mjs";
|
|
170
|
+
import { MdiPhoneInTalkOutline } from "./components/icons/mdi-phone-in-talk-outline.qwik.mjs";
|
|
171
|
+
import { MdiPhoneOutline } from "./components/icons/mdi-phone-outline.qwik.mjs";
|
|
172
|
+
import { MdiCellPhone } from "./components/icons/mdi-cell-phone.qwik.mjs";
|
|
164
173
|
import { MdiPipeDisconnected } from "./components/icons/mdi-pipe-disconnected.qwik.mjs";
|
|
165
174
|
import { MdiPlusBoxOutline } from "./components/icons/mdi-plus-box-outline.qwik.mjs";
|
|
166
175
|
import { MdiPulse } from "./components/icons/mdi-pulse.qwik.mjs";
|
|
@@ -381,6 +390,7 @@ export {
|
|
|
381
390
|
MdiBugOutline,
|
|
382
391
|
MdiBuilding,
|
|
383
392
|
MdiCalendar,
|
|
393
|
+
MdiCellPhone,
|
|
384
394
|
MdiChartBar,
|
|
385
395
|
MdiChartBartStacked,
|
|
386
396
|
MdiChartBoxOutline,
|
|
@@ -440,6 +450,10 @@ export {
|
|
|
440
450
|
MdiEmoticonDevil,
|
|
441
451
|
MdiError,
|
|
442
452
|
MdiErrorOutline,
|
|
453
|
+
MdiEye,
|
|
454
|
+
MdiEyeLockOpenOutline,
|
|
455
|
+
MdiEyeLockOutline,
|
|
456
|
+
MdiEyeOutline,
|
|
443
457
|
MdiFeatureHighlight,
|
|
444
458
|
MdiFileDocumentArrowRight,
|
|
445
459
|
MdiFileDocumentArrowRightOutline,
|
|
@@ -511,6 +525,10 @@ export {
|
|
|
511
525
|
MdiPercent,
|
|
512
526
|
MdiPersonCheck,
|
|
513
527
|
MdiPersonCheckOutline,
|
|
528
|
+
MdiPhone,
|
|
529
|
+
MdiPhoneInTalk,
|
|
530
|
+
MdiPhoneInTalkOutline,
|
|
531
|
+
MdiPhoneOutline,
|
|
514
532
|
MdiPipeDisconnected,
|
|
515
533
|
MdiPlusBoxOutline,
|
|
516
534
|
MdiPulse,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -90,6 +90,10 @@ export * from './components/icons/mdi-email-outline';
|
|
|
90
90
|
export * from './components/icons/mdi-emoticon-devil';
|
|
91
91
|
export * from './components/icons/mdi-error';
|
|
92
92
|
export * from './components/icons/mdi-error-outline';
|
|
93
|
+
export * from './components/icons/mdi-eye';
|
|
94
|
+
export * from './components/icons/mdi-eye-lock-open-outline';
|
|
95
|
+
export * from './components/icons/mdi-eye-lock-outline';
|
|
96
|
+
export * from './components/icons/mdi-eye-outline';
|
|
93
97
|
export * from './components/icons/mdi-feature-highlight';
|
|
94
98
|
export * from './components/icons/mdi-file-document-arrow-right';
|
|
95
99
|
export * from './components/icons/mdi-file-document-arrow-right-outline';
|
|
@@ -161,6 +165,11 @@ export * from './components/icons/mdi-pencil-outline';
|
|
|
161
165
|
export * from './components/icons/mdi-percent';
|
|
162
166
|
export * from './components/icons/mdi-person-check';
|
|
163
167
|
export * from './components/icons/mdi-person-check-outline';
|
|
168
|
+
export * from './components/icons/mdi-phone';
|
|
169
|
+
export * from './components/icons/mdi-phone-in-talk';
|
|
170
|
+
export * from './components/icons/mdi-phone-in-talk-outline';
|
|
171
|
+
export * from './components/icons/mdi-phone-outline';
|
|
172
|
+
export * from './components/icons/mdi-cell-phone';
|
|
164
173
|
export * from './components/icons/mdi-pipe-disconnected';
|
|
165
174
|
export * from './components/icons/mdi-plus-box-outline';
|
|
166
175
|
export * from './components/icons/mdi-pulse';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nr1e/qwik-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"description": "NR1E Qwik Icons Library",
|
|
5
5
|
"author": "NR1E, Inc.",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"sideEffects": false,
|
|
33
33
|
"type": "module",
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@builder.io/qwik": "1.19.
|
|
36
|
-
"@eslint/js": "^9.39.
|
|
35
|
+
"@builder.io/qwik": "1.19.1",
|
|
36
|
+
"@eslint/js": "^9.39.4",
|
|
37
37
|
"@types/node": "^24.10.13",
|
|
38
|
-
"eslint": "9.39.
|
|
39
|
-
"eslint-plugin-qwik": "1.19.
|
|
40
|
-
"globals": "17.
|
|
38
|
+
"eslint": "9.39.4",
|
|
39
|
+
"eslint-plugin-qwik": "1.19.2",
|
|
40
|
+
"globals": "17.4.0",
|
|
41
41
|
"np": "^11.0.2",
|
|
42
42
|
"prettier": "3.8.1",
|
|
43
43
|
"typescript": "5.9.3",
|
|
44
|
-
"typescript-eslint": "8.
|
|
44
|
+
"typescript-eslint": "8.57.0",
|
|
45
45
|
"undici": "*",
|
|
46
46
|
"vite": "7.3.1",
|
|
47
47
|
"vite-tsconfig-paths": "^6.1.1",
|
|
48
|
-
"vitest": "4.0
|
|
48
|
+
"vitest": "4.1.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"prebuild": "prettier --check . && eslint .",
|