@nr1e/qwik-icons 0.0.11 → 0.0.12
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-add-bold.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-bold.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +6 -0
- package/lib/index.qwik.mjs +6 -0
- package/lib-types/components/icons/mdi-add-bold.d.ts +2 -0
- package/lib-types/components/icons/mdi-add-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-add.d.ts +2 -0
- package/lib-types/index.d.ts +3 -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 MdiAddBold = 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 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBold = MdiAddBold;
|
|
@@ -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 MdiAddBold = 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 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBold
|
|
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 MdiAddBox = 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 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBox = MdiAddBox;
|
|
@@ -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 MdiAddBox = 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 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBox
|
|
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 MdiAdd = 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 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAdd = MdiAdd;
|
|
@@ -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 MdiAdd = 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 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAdd
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const svg = require("./components/svg.qwik.cjs");
|
|
4
|
+
const mdiAdd = require("./components/icons/mdi-add.qwik.cjs");
|
|
5
|
+
const mdiAddBold = require("./components/icons/mdi-add-bold.qwik.cjs");
|
|
6
|
+
const mdiAddBox = require("./components/icons/mdi-add-box.qwik.cjs");
|
|
4
7
|
const mdiAddCircle = require("./components/icons/mdi-add-circle.qwik.cjs");
|
|
5
8
|
const mdiAddCircleOutline = require("./components/icons/mdi-add-circle-outline.qwik.cjs");
|
|
6
9
|
const mdiAirHorn = require("./components/icons/mdi-air-horn.qwik.cjs");
|
|
@@ -114,6 +117,9 @@ const clientloopLogoLightBlue = require("./components/brands/clientloop-logo-lig
|
|
|
114
117
|
const clientloopLogoPrimary = require("./components/brands/clientloop-logo-primary.qwik.cjs");
|
|
115
118
|
const clientloopLogoWhite = require("./components/brands/clientloop-logo-white.qwik.cjs");
|
|
116
119
|
exports.Svg = svg.Svg;
|
|
120
|
+
exports.MdiAdd = mdiAdd.MdiAdd;
|
|
121
|
+
exports.MdiAddBold = mdiAddBold.MdiAddBold;
|
|
122
|
+
exports.MdiAddBox = mdiAddBox.MdiAddBox;
|
|
117
123
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
118
124
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
119
125
|
exports.MdiAirHorn = mdiAirHorn.MdiAirHorn;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Svg } from "./components/svg.qwik.mjs";
|
|
2
|
+
import { MdiAdd } from "./components/icons/mdi-add.qwik.mjs";
|
|
3
|
+
import { MdiAddBold } from "./components/icons/mdi-add-bold.qwik.mjs";
|
|
4
|
+
import { MdiAddBox } from "./components/icons/mdi-add-box.qwik.mjs";
|
|
2
5
|
import { MdiAddCircle } from "./components/icons/mdi-add-circle.qwik.mjs";
|
|
3
6
|
import { MdiAddCircleOutline } from "./components/icons/mdi-add-circle-outline.qwik.mjs";
|
|
4
7
|
import { MdiAirHorn } from "./components/icons/mdi-air-horn.qwik.mjs";
|
|
@@ -137,6 +140,9 @@ export {
|
|
|
137
140
|
FlagZa4x3,
|
|
138
141
|
LogosGoogleIcon,
|
|
139
142
|
LogosMicrosoftIcon,
|
|
143
|
+
MdiAdd,
|
|
144
|
+
MdiAddBold,
|
|
145
|
+
MdiAddBox,
|
|
140
146
|
MdiAddCircle,
|
|
141
147
|
MdiAddCircleOutline,
|
|
142
148
|
MdiAirHorn,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from './components/svg';
|
|
2
|
+
export * from './components/icons/mdi-add';
|
|
3
|
+
export * from './components/icons/mdi-add-bold';
|
|
4
|
+
export * from './components/icons/mdi-add-box';
|
|
2
5
|
export * from './components/icons/mdi-add-circle';
|
|
3
6
|
export * from './components/icons/mdi-add-circle-outline';
|
|
4
7
|
export * from './components/icons/mdi-air-horn';
|