@nr1e/qwik-icons 0.0.28 → 0.0.29
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-check-bold.qwik.cjs +16 -0
- package/lib/components/icons/mdi-check-bold.qwik.mjs +16 -0
- package/lib/components/icons/mdi-check.qwik.cjs +16 -0
- package/lib/components/icons/mdi-check.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pencil-box-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pencil-box-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pencil-circle-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pencil-circle-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pencil-circle.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pencil-circle.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pencil-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pencil-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-pencil.qwik.cjs +16 -0
- package/lib/components/icons/mdi-pencil.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +14 -0
- package/lib/index.qwik.mjs +14 -0
- package/lib-types/components/icons/mdi-check-bold.d.ts +2 -0
- package/lib-types/components/icons/mdi-check.d.ts +2 -0
- package/lib-types/components/icons/mdi-pencil-box-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-pencil-circle-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-pencil-circle.d.ts +2 -0
- package/lib-types/components/icons/mdi-pencil-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-pencil.d.ts +2 -0
- package/lib-types/index.d.ts +7 -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 MdiCheckBold = 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: "m9 20.42l-6.21-6.21l2.83-2.83L9 14.77l9.88-9.89l2.83 2.83z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCheckBold = MdiCheckBold;
|
|
@@ -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 MdiCheckBold = 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: "m9 20.42l-6.21-6.21l2.83-2.83L9 14.77l9.88-9.89l2.83 2.83z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCheckBold
|
|
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 MdiCheck = 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: "M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiCheck = MdiCheck;
|
|
@@ -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 MdiCheck = 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: "M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiCheck
|
|
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 MdiPencilBoxOutline = 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 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2.3 6.35l-1 1l-2.05-2.05l1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M7 14.94l6.06-6.06l2.06 2.06L9.06 17H7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPencilBoxOutline = MdiPencilBoxOutline;
|
|
@@ -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 MdiPencilBoxOutline = 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 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2.3 6.35l-1 1l-2.05-2.05l1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M7 14.94l6.06-6.06l2.06 2.06L9.06 17H7z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPencilBoxOutline
|
|
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 MdiPencilCircleOutline = 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: "m7 14.94l6.06-6.06l2.06 2.06L9.06 17H7zM12 20a8 8 0 0 0 8-8a8 8 0 0 0-8-8a8 8 0 0 0-8 8a8 8 0 0 0 8 8m4.7-10.65l-1 1l-2.05-2.05l1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M12 2a10 10 0 0 1 10 10a10 10 0 0 1-10 10A10 10 0 0 1 2 12A10 10 0 0 1 12 2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPencilCircleOutline = MdiPencilCircleOutline;
|
|
@@ -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 MdiPencilCircleOutline = 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: "m7 14.94l6.06-6.06l2.06 2.06L9.06 17H7zM12 20a8 8 0 0 0 8-8a8 8 0 0 0-8-8a8 8 0 0 0-8 8a8 8 0 0 0 8 8m4.7-10.65l-1 1l-2.05-2.05l1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M12 2a10 10 0 0 1 10 10a10 10 0 0 1-10 10A10 10 0 0 1 2 12A10 10 0 0 1 12 2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPencilCircleOutline
|
|
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 MdiPencilCircle = 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 2C6.47 2 2 6.47 2 12s4.47 10 10 10s10-4.47 10-10S17.53 2 12 2m3.1 5.07c.14 0 .28.05.4.16l1.27 1.27c.23.22.23.57 0 .78l-1 1l-2.05-2.05l1-1c.1-.11.24-.16.38-.16m-1.97 1.74l2.06 2.06l-6.06 6.06H7.07v-2.06z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPencilCircle = MdiPencilCircle;
|
|
@@ -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 MdiPencilCircle = 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 2C6.47 2 2 6.47 2 12s4.47 10 10 10s10-4.47 10-10S17.53 2 12 2m3.1 5.07c.14 0 .28.05.4.16l1.27 1.27c.23.22.23.57 0 .78l-1 1l-2.05-2.05l1-1c.1-.11.24-.16.38-.16m-1.97 1.74l2.06 2.06l-6.06 6.06H7.07v-2.06z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPencilCircle
|
|
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 MdiPencilOutline = 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: "m14.06 9l.94.94L5.92 19H5v-.92zm3.6-6c-.25 0-.51.1-.7.29l-1.83 1.83l3.75 3.75l1.83-1.83c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPencilOutline = MdiPencilOutline;
|
|
@@ -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 MdiPencilOutline = 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: "m14.06 9l.94.94L5.92 19H5v-.92zm3.6-6c-.25 0-.51.1-.7.29l-1.83 1.83l3.75 3.75l1.83-1.83c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPencilOutline
|
|
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 MdiPencil = 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.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83l3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiPencil = MdiPencil;
|
|
@@ -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 MdiPencil = 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.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83l3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiPencil
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -37,6 +37,8 @@ const mdiChartBoxOutline = require("./components/icons/mdi-chart-box-outline.qwi
|
|
|
37
37
|
const mdiChartFinance = require("./components/icons/mdi-chart-finance.qwik.cjs");
|
|
38
38
|
const mdiChartGantt = require("./components/icons/mdi-chart-gantt.qwik.cjs");
|
|
39
39
|
const mdiChartLine = require("./components/icons/mdi-chart-line.qwik.cjs");
|
|
40
|
+
const mdiCheck = require("./components/icons/mdi-check.qwik.cjs");
|
|
41
|
+
const mdiCheckBold = require("./components/icons/mdi-check-bold.qwik.cjs");
|
|
40
42
|
const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
41
43
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
42
44
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
@@ -139,6 +141,11 @@ const mdiNavigateBefore = require("./components/icons/mdi-navigate-before.qwik.c
|
|
|
139
141
|
const mdiNavigateNext = require("./components/icons/mdi-navigate-next.qwik.cjs");
|
|
140
142
|
const mdiNetworkOutline = require("./components/icons/mdi-network-outline.qwik.cjs");
|
|
141
143
|
const mdiOfficeBuildingOutline = require("./components/icons/mdi-office-building-outline.qwik.cjs");
|
|
144
|
+
const mdiPencil = require("./components/icons/mdi-pencil.qwik.cjs");
|
|
145
|
+
const mdiPencilBoxOutline = require("./components/icons/mdi-pencil-box-outline.qwik.cjs");
|
|
146
|
+
const mdiPencilCircle = require("./components/icons/mdi-pencil-circle.qwik.cjs");
|
|
147
|
+
const mdiPencilCircleOutline = require("./components/icons/mdi-pencil-circle-outline.qwik.cjs");
|
|
148
|
+
const mdiPencilOutline = require("./components/icons/mdi-pencil-outline.qwik.cjs");
|
|
142
149
|
const mdiPercent = require("./components/icons/mdi-percent.qwik.cjs");
|
|
143
150
|
const mdiPersonCheck = require("./components/icons/mdi-person-check.qwik.cjs");
|
|
144
151
|
const mdiPersonCheckOutline = require("./components/icons/mdi-person-check-outline.qwik.cjs");
|
|
@@ -306,6 +313,8 @@ exports.MdiChartBoxOutline = mdiChartBoxOutline.MdiChartBoxOutline;
|
|
|
306
313
|
exports.MdiChartFinance = mdiChartFinance.MdiChartFinance;
|
|
307
314
|
exports.MdiChartGantt = mdiChartGantt.MdiChartGantt;
|
|
308
315
|
exports.MdiChartLine = mdiChartLine.MdiChartLine;
|
|
316
|
+
exports.MdiCheck = mdiCheck.MdiCheck;
|
|
317
|
+
exports.MdiCheckBold = mdiCheckBold.MdiCheckBold;
|
|
309
318
|
exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
310
319
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
311
320
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
|
@@ -408,6 +417,11 @@ exports.MdiNavigateBefore = mdiNavigateBefore.MdiNavigateBefore;
|
|
|
408
417
|
exports.MdiNavigateNext = mdiNavigateNext.MdiNavigateNext;
|
|
409
418
|
exports.MdiNetworkOutline = mdiNetworkOutline.MdiNetworkOutline;
|
|
410
419
|
exports.MdiOfficeBuildingOutline = mdiOfficeBuildingOutline.MdiOfficeBuildingOutline;
|
|
420
|
+
exports.MdiPencil = mdiPencil.MdiPencil;
|
|
421
|
+
exports.MdiPencilBoxOutline = mdiPencilBoxOutline.MdiPencilBoxOutline;
|
|
422
|
+
exports.MdiPencilCircle = mdiPencilCircle.MdiPencilCircle;
|
|
423
|
+
exports.MdiPencilCircleOutline = mdiPencilCircleOutline.MdiPencilCircleOutline;
|
|
424
|
+
exports.MdiPencilOutline = mdiPencilOutline.MdiPencilOutline;
|
|
411
425
|
exports.MdiPercent = mdiPercent.MdiPercent;
|
|
412
426
|
exports.MdiPersonCheck = mdiPersonCheck.MdiPersonCheck;
|
|
413
427
|
exports.MdiPersonCheckOutline = mdiPersonCheckOutline.MdiPersonCheckOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -35,6 +35,8 @@ import { MdiChartBoxOutline } from "./components/icons/mdi-chart-box-outline.qwi
|
|
|
35
35
|
import { MdiChartFinance } from "./components/icons/mdi-chart-finance.qwik.mjs";
|
|
36
36
|
import { MdiChartGantt } from "./components/icons/mdi-chart-gantt.qwik.mjs";
|
|
37
37
|
import { MdiChartLine } from "./components/icons/mdi-chart-line.qwik.mjs";
|
|
38
|
+
import { MdiCheck } from "./components/icons/mdi-check.qwik.mjs";
|
|
39
|
+
import { MdiCheckBold } from "./components/icons/mdi-check-bold.qwik.mjs";
|
|
38
40
|
import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
39
41
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
40
42
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
@@ -137,6 +139,11 @@ import { MdiNavigateBefore } from "./components/icons/mdi-navigate-before.qwik.m
|
|
|
137
139
|
import { MdiNavigateNext } from "./components/icons/mdi-navigate-next.qwik.mjs";
|
|
138
140
|
import { MdiNetworkOutline } from "./components/icons/mdi-network-outline.qwik.mjs";
|
|
139
141
|
import { MdiOfficeBuildingOutline } from "./components/icons/mdi-office-building-outline.qwik.mjs";
|
|
142
|
+
import { MdiPencil } from "./components/icons/mdi-pencil.qwik.mjs";
|
|
143
|
+
import { MdiPencilBoxOutline } from "./components/icons/mdi-pencil-box-outline.qwik.mjs";
|
|
144
|
+
import { MdiPencilCircle } from "./components/icons/mdi-pencil-circle.qwik.mjs";
|
|
145
|
+
import { MdiPencilCircleOutline } from "./components/icons/mdi-pencil-circle-outline.qwik.mjs";
|
|
146
|
+
import { MdiPencilOutline } from "./components/icons/mdi-pencil-outline.qwik.mjs";
|
|
140
147
|
import { MdiPercent } from "./components/icons/mdi-percent.qwik.mjs";
|
|
141
148
|
import { MdiPersonCheck } from "./components/icons/mdi-person-check.qwik.mjs";
|
|
142
149
|
import { MdiPersonCheckOutline } from "./components/icons/mdi-person-check-outline.qwik.mjs";
|
|
@@ -358,6 +365,8 @@ export {
|
|
|
358
365
|
MdiChartFinance,
|
|
359
366
|
MdiChartGantt,
|
|
360
367
|
MdiChartLine,
|
|
368
|
+
MdiCheck,
|
|
369
|
+
MdiCheckBold,
|
|
361
370
|
MdiCheckCircle,
|
|
362
371
|
MdiCheckCircleOutline,
|
|
363
372
|
MdiChevronDown,
|
|
@@ -460,6 +469,11 @@ export {
|
|
|
460
469
|
MdiNavigateNext,
|
|
461
470
|
MdiNetworkOutline,
|
|
462
471
|
MdiOfficeBuildingOutline,
|
|
472
|
+
MdiPencil,
|
|
473
|
+
MdiPencilBoxOutline,
|
|
474
|
+
MdiPencilCircle,
|
|
475
|
+
MdiPencilCircleOutline,
|
|
476
|
+
MdiPencilOutline,
|
|
463
477
|
MdiPercent,
|
|
464
478
|
MdiPersonCheck,
|
|
465
479
|
MdiPersonCheckOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export * from './components/icons/mdi-chart-box-outline';
|
|
|
35
35
|
export * from './components/icons/mdi-chart-finance';
|
|
36
36
|
export * from './components/icons/mdi-chart-gantt';
|
|
37
37
|
export * from './components/icons/mdi-chart-line';
|
|
38
|
+
export * from './components/icons/mdi-check';
|
|
39
|
+
export * from './components/icons/mdi-check-bold';
|
|
38
40
|
export * from './components/icons/mdi-check-circle';
|
|
39
41
|
export * from './components/icons/mdi-check-circle-outline';
|
|
40
42
|
export * from './components/icons/mdi-chevron-down';
|
|
@@ -137,6 +139,11 @@ export * from './components/icons/mdi-navigate-before';
|
|
|
137
139
|
export * from './components/icons/mdi-navigate-next';
|
|
138
140
|
export * from './components/icons/mdi-network-outline';
|
|
139
141
|
export * from './components/icons/mdi-office-building-outline';
|
|
142
|
+
export * from './components/icons/mdi-pencil';
|
|
143
|
+
export * from './components/icons/mdi-pencil-box-outline';
|
|
144
|
+
export * from './components/icons/mdi-pencil-circle';
|
|
145
|
+
export * from './components/icons/mdi-pencil-circle-outline';
|
|
146
|
+
export * from './components/icons/mdi-pencil-outline';
|
|
140
147
|
export * from './components/icons/mdi-percent';
|
|
141
148
|
export * from './components/icons/mdi-person-check';
|
|
142
149
|
export * from './components/icons/mdi-person-check-outline';
|