@nr1e/qwik-icons 0.0.6 → 0.0.7
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-brain-freeze-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-brain-freeze-outline.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +2 -0
- package/lib/index.qwik.mjs +2 -0
- package/lib-types/components/icons/mdi-brain-freeze-outline.d.ts +2 -0
- package/lib-types/index.d.ts +1 -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 MdiBrainFreezeOutline = 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 3c3.88 0 7 3.14 7 7c0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59c.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5c0-4.97-4.04-9-9-9m4.33 8.3l-1.96.51l1.44 1.46c.35.34.35.92 0 1.27s-.93.35-1.27 0l-1.45-1.44l-.52 1.96c-.12.49-.61.76-1.07.64a.91.91 0 0 1-.66-1.11l.53-1.96l-1.96.53a.91.91 0 0 1-1.11-.66c-.12-.45.16-.95.64-1.07l1.96-.52l-1.44-1.45a.9.9 0 0 1 1.27-1.27l1.46 1.44l.51-1.96c.12-.49.62-.77 1.09-.64c.49.13.77.62.64 1.1L14.9 8.1l1.97-.53c.48-.13.97.15 1.1.64c.13.47-.15.97-.64 1.09"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBrainFreezeOutline = MdiBrainFreezeOutline;
|
|
@@ -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 MdiBrainFreezeOutline = 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 3c3.88 0 7 3.14 7 7c0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59c.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5c0-4.97-4.04-9-9-9m4.33 8.3l-1.96.51l1.44 1.46c.35.34.35.92 0 1.27s-.93.35-1.27 0l-1.45-1.44l-.52 1.96c-.12.49-.61.76-1.07.64a.91.91 0 0 1-.66-1.11l.53-1.96l-1.96.53a.91.91 0 0 1-1.11-.66c-.12-.45.16-.95.64-1.07l1.96-.52l-1.44-1.45a.9.9 0 0 1 1.27-1.27l1.46 1.44l.51-1.96c.12-.49.62-.77 1.09-.64c.49.13.77.62.64 1.1L14.9 8.1l1.97-.53c.48-.13.97.15 1.1.64c.13.47-.15.97-.64 1.09"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBrainFreezeOutline
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -8,6 +8,7 @@ const mdiAlertBoxOutline = require("./components/icons/mdi-alert-box-outline.qwi
|
|
|
8
8
|
const mdiArrowBackCircle = require("./components/icons/mdi-arrow-back-circle.qwik.cjs");
|
|
9
9
|
const mdiArrowForwardCircle = require("./components/icons/mdi-arrow-forward-circle.qwik.cjs");
|
|
10
10
|
const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
|
|
11
|
+
const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
|
|
11
12
|
const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
12
13
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
13
14
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
@@ -84,6 +85,7 @@ exports.MdiAlertBoxOutline = mdiAlertBoxOutline.MdiAlertBoxOutline;
|
|
|
84
85
|
exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
|
|
85
86
|
exports.MdiArrowForwardCircle = mdiArrowForwardCircle.MdiArrowForwardCircle;
|
|
86
87
|
exports.MdiBrain = mdiBrain.MdiBrain;
|
|
88
|
+
exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
|
|
87
89
|
exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
88
90
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
89
91
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { MdiAlertBoxOutline } from "./components/icons/mdi-alert-box-outline.qwi
|
|
|
6
6
|
import { MdiArrowBackCircle } from "./components/icons/mdi-arrow-back-circle.qwik.mjs";
|
|
7
7
|
import { MdiArrowForwardCircle } from "./components/icons/mdi-arrow-forward-circle.qwik.mjs";
|
|
8
8
|
import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
|
|
9
|
+
import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
|
|
9
10
|
import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
10
11
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
11
12
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
@@ -98,6 +99,7 @@ export {
|
|
|
98
99
|
MdiArrowBackCircle,
|
|
99
100
|
MdiArrowForwardCircle,
|
|
100
101
|
MdiBrain,
|
|
102
|
+
MdiBrainFreezeOutline,
|
|
101
103
|
MdiCheckCircle,
|
|
102
104
|
MdiCheckCircleOutline,
|
|
103
105
|
MdiChevronDown,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from './components/icons/mdi-alert-box-outline';
|
|
|
6
6
|
export * from './components/icons/mdi-arrow-back-circle';
|
|
7
7
|
export * from './components/icons/mdi-arrow-forward-circle';
|
|
8
8
|
export * from './components/icons/mdi-brain';
|
|
9
|
+
export * from './components/icons/mdi-brain-freeze-outline';
|
|
9
10
|
export * from './components/icons/mdi-check-circle';
|
|
10
11
|
export * from './components/icons/mdi-check-circle-outline';
|
|
11
12
|
export * from './components/icons/mdi-chevron-down';
|