@nr1e/qwik-icons 0.0.6 → 0.0.8
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-bank-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bank-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-bank.qwik.cjs +16 -0
- package/lib/components/icons/mdi-bank.qwik.mjs +16 -0
- 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/components/icons/mdi-building.qwik.cjs +16 -0
- package/lib/components/icons/mdi-building.qwik.mjs +16 -0
- package/lib/components/icons/mdi-calendar.qwik.cjs +16 -0
- package/lib/components/icons/mdi-calendar.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +10 -0
- package/lib/index.qwik.mjs +10 -0
- package/lib-types/components/icons/mdi-bank-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-bank.d.ts +2 -0
- package/lib-types/components/icons/mdi-brain-freeze-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-building.d.ts +2 -0
- package/lib-types/components/icons/mdi-calendar.d.ts +2 -0
- package/lib-types/index.d.ts +5 -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 MdiBankOutline = 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.5 10h-2v7h2zm6 0h-2v7h2zm8.5 9H2v2h19zm-2.5-9h-2v7h2zm-7-6.74L16.71 6H6.29zm0-2.26L2 6v2h19V6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBankOutline = MdiBankOutline;
|
|
@@ -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 MdiBankOutline = 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.5 10h-2v7h2zm6 0h-2v7h2zm8.5 9H2v2h19zm-2.5-9h-2v7h2zm-7-6.74L16.71 6H6.29zm0-2.26L2 6v2h19V6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBankOutline
|
|
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 MdiBank = 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.5 1L2 6v2h19V6m-5 4v7h3v-7M2 22h19v-3H2m8-9v7h3v-7m-9 0v7h3v-7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBank = MdiBank;
|
|
@@ -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 MdiBank = 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.5 1L2 6v2h19V6m-5 4v7h3v-7M2 22h19v-3H2m8-9v7h3v-7m-9 0v7h3v-7z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBank
|
|
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 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
|
+
};
|
|
@@ -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 MdiBuilding = 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: "M18 15h-2v2h2m0-6h-2v2h2m2 6h-8v-2h2v-2h-2v-2h2v-2h-2V9h8M10 7H8V5h2m0 6H8V9h2m0 6H8v-2h2m0 6H8v-2h2M6 7H4V5h2m0 6H4V9h2m0 6H4v-2h2m0 6H4v-2h2m6-10V3H2v18h20V7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBuilding = MdiBuilding;
|
|
@@ -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 MdiBuilding = 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: "M18 15h-2v2h2m0-6h-2v2h2m2 6h-8v-2h2v-2h-2v-2h2v-2h-2V9h8M10 7H8V5h2m0 6H8V9h2m0 6H8v-2h2m0 6H8v-2h2M6 7H4V5h2m0 6H4V9h2m0 6H4v-2h2m0 6H4v-2h2m6-10V3H2v18h20V7z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBuilding
|
|
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 MdiCalendar = 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 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1m-1 11h-5v5h5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCalendar = MdiCalendar;
|
|
@@ -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 MdiCalendar = 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 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1m-1 11h-5v5h5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCalendar
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -7,7 +7,12 @@ const mdiAlert = require("./components/icons/mdi-alert.qwik.cjs");
|
|
|
7
7
|
const mdiAlertBoxOutline = require("./components/icons/mdi-alert-box-outline.qwik.cjs");
|
|
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
|
+
const mdiBank = require("./components/icons/mdi-bank.qwik.cjs");
|
|
11
|
+
const mdiBankOutline = require("./components/icons/mdi-bank-outline.qwik.cjs");
|
|
10
12
|
const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
|
|
13
|
+
const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
|
|
14
|
+
const mdiBuilding = require("./components/icons/mdi-building.qwik.cjs");
|
|
15
|
+
const mdiCalendar = require("./components/icons/mdi-calendar.qwik.cjs");
|
|
11
16
|
const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
12
17
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
13
18
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
@@ -83,7 +88,12 @@ exports.MdiAlert = mdiAlert.MdiAlert;
|
|
|
83
88
|
exports.MdiAlertBoxOutline = mdiAlertBoxOutline.MdiAlertBoxOutline;
|
|
84
89
|
exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
|
|
85
90
|
exports.MdiArrowForwardCircle = mdiArrowForwardCircle.MdiArrowForwardCircle;
|
|
91
|
+
exports.MdiBank = mdiBank.MdiBank;
|
|
92
|
+
exports.MdiBankOutline = mdiBankOutline.MdiBankOutline;
|
|
86
93
|
exports.MdiBrain = mdiBrain.MdiBrain;
|
|
94
|
+
exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
|
|
95
|
+
exports.MdiBuilding = mdiBuilding.MdiBuilding;
|
|
96
|
+
exports.MdiCalendar = mdiCalendar.MdiCalendar;
|
|
87
97
|
exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
88
98
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
89
99
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -5,7 +5,12 @@ import { MdiAlert } from "./components/icons/mdi-alert.qwik.mjs";
|
|
|
5
5
|
import { MdiAlertBoxOutline } from "./components/icons/mdi-alert-box-outline.qwik.mjs";
|
|
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
|
+
import { MdiBank } from "./components/icons/mdi-bank.qwik.mjs";
|
|
9
|
+
import { MdiBankOutline } from "./components/icons/mdi-bank-outline.qwik.mjs";
|
|
8
10
|
import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
|
|
11
|
+
import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
|
|
12
|
+
import { MdiBuilding } from "./components/icons/mdi-building.qwik.mjs";
|
|
13
|
+
import { MdiCalendar } from "./components/icons/mdi-calendar.qwik.mjs";
|
|
9
14
|
import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
10
15
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
11
16
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
@@ -97,7 +102,12 @@ export {
|
|
|
97
102
|
MdiAlertBoxOutline,
|
|
98
103
|
MdiArrowBackCircle,
|
|
99
104
|
MdiArrowForwardCircle,
|
|
105
|
+
MdiBank,
|
|
106
|
+
MdiBankOutline,
|
|
100
107
|
MdiBrain,
|
|
108
|
+
MdiBrainFreezeOutline,
|
|
109
|
+
MdiBuilding,
|
|
110
|
+
MdiCalendar,
|
|
101
111
|
MdiCheckCircle,
|
|
102
112
|
MdiCheckCircleOutline,
|
|
103
113
|
MdiChevronDown,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -5,7 +5,12 @@ export * from './components/icons/mdi-alert';
|
|
|
5
5
|
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
|
+
export * from './components/icons/mdi-bank';
|
|
9
|
+
export * from './components/icons/mdi-bank-outline';
|
|
8
10
|
export * from './components/icons/mdi-brain';
|
|
11
|
+
export * from './components/icons/mdi-brain-freeze-outline';
|
|
12
|
+
export * from './components/icons/mdi-building';
|
|
13
|
+
export * from './components/icons/mdi-calendar';
|
|
9
14
|
export * from './components/icons/mdi-check-circle';
|
|
10
15
|
export * from './components/icons/mdi-check-circle-outline';
|
|
11
16
|
export * from './components/icons/mdi-chevron-down';
|