@nr1e/qwik-icons 0.0.30 → 0.0.31
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-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/index.qwik.cjs +8 -0
- package/lib/index.qwik.mjs +8 -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/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 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
|
+
};
|
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");
|
|
@@ -388,6 +392,10 @@ exports.MdiEmailOutline = mdiEmailOutline.MdiEmailOutline;
|
|
|
388
392
|
exports.MdiEmoticonDevil = mdiEmoticonDevil.MdiEmoticonDevil;
|
|
389
393
|
exports.MdiError = mdiError.MdiError;
|
|
390
394
|
exports.MdiErrorOutline = mdiErrorOutline.MdiErrorOutline;
|
|
395
|
+
exports.MdiEye = mdiEye.MdiEye;
|
|
396
|
+
exports.MdiEyeLockOpenOutline = mdiEyeLockOpenOutline.MdiEyeLockOpenOutline;
|
|
397
|
+
exports.MdiEyeLockOutline = mdiEyeLockOutline.MdiEyeLockOutline;
|
|
398
|
+
exports.MdiEyeOutline = mdiEyeOutline.MdiEyeOutline;
|
|
391
399
|
exports.MdiFeatureHighlight = mdiFeatureHighlight.MdiFeatureHighlight;
|
|
392
400
|
exports.MdiFileDocumentArrowRight = mdiFileDocumentArrowRight.MdiFileDocumentArrowRight;
|
|
393
401
|
exports.MdiFileDocumentArrowRightOutline = mdiFileDocumentArrowRightOutline.MdiFileDocumentArrowRightOutline;
|
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";
|
|
@@ -440,6 +444,10 @@ export {
|
|
|
440
444
|
MdiEmoticonDevil,
|
|
441
445
|
MdiError,
|
|
442
446
|
MdiErrorOutline,
|
|
447
|
+
MdiEye,
|
|
448
|
+
MdiEyeLockOpenOutline,
|
|
449
|
+
MdiEyeLockOutline,
|
|
450
|
+
MdiEyeOutline,
|
|
443
451
|
MdiFeatureHighlight,
|
|
444
452
|
MdiFileDocumentArrowRight,
|
|
445
453
|
MdiFileDocumentArrowRightOutline,
|
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';
|