@nr1e/qwik-icons 0.0.23 → 0.0.24
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-invoice-fast-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-fast-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-fast.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-fast.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-list-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-list-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-list.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-list.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-multiple-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-multiple-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-multiple.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-multiple.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-send-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-send-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-send.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-send.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-text-edit.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-text-edit.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-text-multiple-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-text-multiple-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-text-multiple.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-text-multiple.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-text-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-text-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice-text.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice-text.qwik.mjs +16 -0
- package/lib/components/icons/mdi-invoice.qwik.cjs +16 -0
- package/lib/components/icons/mdi-invoice.qwik.mjs +16 -0
- package/lib/components/icons/mdi-text-edit-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-text-edit-outline.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +32 -0
- package/lib/index.qwik.mjs +32 -0
- package/lib-types/components/icons/mdi-invoice-fast-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-fast.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-list-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-list.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-multiple-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-multiple.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-send-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-send.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-text-edit.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-text-multiple-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-text-multiple.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-text-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice-text.d.ts +2 -0
- package/lib-types/components/icons/mdi-invoice.d.ts +2 -0
- package/lib-types/components/icons/mdi-text-edit-outline.d.ts +2 -0
- package/lib-types/index.d.ts +16 -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 MdiInvoiceFastOutline = 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.5 19.32L22 21V5H7v16l2.5-1.68L12 21l2.5-1.68L17 21zM20 7v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V7zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m0 3c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-2 5c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceFastOutline = MdiInvoiceFastOutline;
|
|
@@ -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 MdiInvoiceFastOutline = 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.5 19.32L22 21V5H7v16l2.5-1.68L12 21l2.5-1.68L17 21zM20 7v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V7zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m0 3c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-2 5c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceFastOutline
|
|
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 MdiInvoiceFast = 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: "M22 5H7v16l2.5-1.68L12 21l2.5-1.68L17 21l2.5-1.68L22 21zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h3v2H2c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceFast = MdiInvoiceFast;
|
|
@@ -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 MdiInvoiceFast = 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: "M22 5H7v16l2.5-1.68L12 21l2.5-1.68L17 21l2.5-1.68L22 21zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h3v2H2c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceFast
|
|
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 MdiInvoiceListOutline = 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 7v2h-2V7zm-4 0v2H7V7zm0 4H7v2h6zm2 0v2h2v-2zm6 11l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18zm-2-3.74V5H5v13.26l1-.66l3 2l3-2l3 2l3-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceListOutline = MdiInvoiceListOutline;
|
|
@@ -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 MdiInvoiceListOutline = 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 7v2h-2V7zm-4 0v2H7V7zm0 4H7v2h6zm2 0v2h2v-2zm6 11l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18zm-2-3.74V5H5v13.26l1-.66l3 2l3-2l3 2l3-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceListOutline
|
|
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 MdiInvoiceList = 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: "M3 22V3h18v19l-3-2l-3 2l-3-2l-3 2l-3-2zM17 9V7h-2v2zm-4 0V7H7v2zm0 2H7v2h6zm2 2h2v-2h-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceList = MdiInvoiceList;
|
|
@@ -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 MdiInvoiceList = 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: "M3 22V3h18v19l-3-2l-3 2l-3-2l-3 2l-3-2zM17 9V7h-2v2zm-4 0V7H7v2zm0 2H7v2h6zm2 2h2v-2h-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceList
|
|
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 MdiInvoiceMultipleOutline = 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: "M2 2v15h2V4h13V2zm16.5 18.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceMultipleOutline = MdiInvoiceMultipleOutline;
|
|
@@ -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 MdiInvoiceMultipleOutline = 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: "M2 2v15h2V4h13V2zm16.5 18.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceMultipleOutline
|
|
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 MdiInvoiceMultiple = 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 2H2v15h2V4h13zm4 20l-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceMultiple = MdiInvoiceMultiple;
|
|
@@ -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 MdiInvoiceMultiple = 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 2H2v15h2V4h13zm4 20l-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceMultiple
|
|
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 MdiInvoiceOutline = 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 22l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18zm-2-3.74V5H5v13.26l1-.66l3 2l3-2l3 2l3-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceOutline = MdiInvoiceOutline;
|
|
@@ -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 MdiInvoiceOutline = 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 22l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18zm-2-3.74V5H5v13.26l1-.66l3 2l3-2l3 2l3-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceOutline
|
|
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 MdiInvoiceSendOutline = 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: "m24 18l-10-5v4l4 1l-4 1v4zm-5-4.74l2 1V3H3v19l3-2l3 2l3-2v-2.4l-3 2l-3-2l-1 .66V5h14z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceSendOutline = MdiInvoiceSendOutline;
|
|
@@ -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 MdiInvoiceSendOutline = 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: "m24 18l-10-5v4l4 1l-4 1v4zm-5-4.74l2 1V3H3v19l3-2l3 2l3-2v-2.4l-3 2l-3-2l-1 .66V5h14z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceSendOutline
|
|
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 MdiInvoiceSend = 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: "M3 22V3h18v11.26l-9-4.5V20l-3 2l-3-2zm21-4l-10 5v-4l4-1l-4-1v-4z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceSend = MdiInvoiceSend;
|
|
@@ -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 MdiInvoiceSend = 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: "M3 22V3h18v11.26l-9-4.5V20l-3 2l-3-2zm21-4l-10 5v-4l4-1l-4-1v-4z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceSend
|
|
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 MdiInvoiceTextEdit = 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.86 21.43L9 22l-3-2l-3 2V3h18v7.2c-.9-.38-2-.2-2.76.55l-8.38 8.38zM17 7H7v2h10zm-2 4H7v2h8zm-3.14 8.96V22h2.04l6.13-6.13L18 13.83zm9.85-6.49l-1.32-1.32a.24.24 0 0 0-.08-.06a.5.5 0 0 0-.62.04l-.02.02l-.98.98l2.04 2.04l.98-.98c.2-.19.2-.52 0-.72"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceTextEdit = MdiInvoiceTextEdit;
|
|
@@ -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 MdiInvoiceTextEdit = 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.86 21.43L9 22l-3-2l-3 2V3h18v7.2c-.9-.38-2-.2-2.76.55l-8.38 8.38zM17 7H7v2h10zm-2 4H7v2h8zm-3.14 8.96V22h2.04l6.13-6.13L18 13.83zm9.85-6.49l-1.32-1.32a.24.24 0 0 0-.08-.06a.5.5 0 0 0-.62.04l-.02.02l-.98.98l2.04 2.04l.98-.98c.2-.19.2-.52 0-.72"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceTextEdit
|
|
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 MdiInvoiceTextMultipleOutline = 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: "M2 2v15h2V4h13V2zm8 8h7v2h-7zm5 4h-5v2h5zm3.5 6.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V8z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceTextMultipleOutline = MdiInvoiceTextMultipleOutline;
|
|
@@ -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 MdiInvoiceTextMultipleOutline = 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: "M2 2v15h2V4h13V2zm8 8h7v2h-7zm5 4h-5v2h5zm3.5 6.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02l-2.5-1.69l-2.5 1.69l-3-2.02V8z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceTextMultipleOutline
|
|
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 MdiInvoiceTextMultiple = 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 2H2v15h2V4h13zm4 20l-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15zM10 10v2h7v-2zm5 4h-5v2h5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceTextMultiple = MdiInvoiceTextMultiple;
|
|
@@ -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 MdiInvoiceTextMultiple = 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 2H2v15h2V4h13zm4 20l-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15zM10 10v2h7v-2zm5 4h-5v2h5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceTextMultiple
|
|
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 MdiInvoiceTextOutline = 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 7v2H7V7zm-2 4v2H7v-2zm3 9l3 2V3H3v19l3-2l3 2l3-2l3 2zm1-15v13.26l-1-.66l-3 2l-3-2l-3 2l-3-2l-1 .66V5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceTextOutline = MdiInvoiceTextOutline;
|
|
@@ -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 MdiInvoiceTextOutline = 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 7v2H7V7zm-2 4v2H7v-2zm3 9l3 2V3H3v19l3-2l3 2l3-2l3 2zm1-15v13.26l-1-.66l-3 2l-3-2l-3 2l-3-2l-1 .66V5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceTextOutline
|
|
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 MdiInvoiceText = 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: "M3 3v19l3-2l3 2l3-2l3 2l3-2l3 2V3zm14 4v2H7V7zm-2 4v2H7v-2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoiceText = MdiInvoiceText;
|
|
@@ -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 MdiInvoiceText = 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: "M3 3v19l3-2l3 2l3-2l3 2l3-2l3 2V3zm14 4v2H7V7zm-2 4v2H7v-2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoiceText
|
|
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 MdiInvoice = 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 22l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiInvoice = MdiInvoice;
|
|
@@ -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 MdiInvoice = 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 22l-3-2l-3 2l-3-2l-3 2l-3-2l-3 2V3h18z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiInvoice
|
|
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 MdiTextEditOutline = 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.86 21.43L9 22l-3-2l-3 2V3h18v7.2c-.63-.27-1.36-.27-2 .02V5H5v13.26l1-.66l3 2l.86-.6zm2-1.47L18 13.83l2.03 2.04L13.9 22h-2.04zm9.85-5.77l-.98.98l-2.04-2.04l.98-.98l.01-.01l.01-.01c.17-.16.43-.17.62-.04c.03.01.06.04.08.06l1.32 1.32c.2.2.2.53 0 .72M17 9V7H7v2zm-2 4v-2H7v2z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiTextEditOutline = MdiTextEditOutline;
|
|
@@ -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 MdiTextEditOutline = 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.86 21.43L9 22l-3-2l-3 2V3h18v7.2c-.63-.27-1.36-.27-2 .02V5H5v13.26l1-.66l3 2l.86-.6zm2-1.47L18 13.83l2.03 2.04L13.9 22h-2.04zm9.85-5.77l-.98.98l-2.04-2.04l.98-.98l.01-.01l.01-.01c.17-.16.43-.17.62-.04c.03.01.06.04.08.06l1.32 1.32c.2.2.2.53 0 .72M17 9V7H7v2zm-2 4v-2H7v2z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiTextEditOutline
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -99,7 +99,22 @@ const mdiInformationVariantCircle = require("./components/icons/mdi-information-
|
|
|
99
99
|
const mdiInformationVariantCircleOutline = require("./components/icons/mdi-information-variant-circle-outline.qwik.cjs");
|
|
100
100
|
const mdiInstantMix = require("./components/icons/mdi-instant-mix.qwik.cjs");
|
|
101
101
|
const mdiInvite = require("./components/icons/mdi-invite.qwik.cjs");
|
|
102
|
+
const mdiInvoice = require("./components/icons/mdi-invoice.qwik.cjs");
|
|
103
|
+
const mdiInvoiceFast = require("./components/icons/mdi-invoice-fast.qwik.cjs");
|
|
104
|
+
const mdiInvoiceFastOutline = require("./components/icons/mdi-invoice-fast-outline.qwik.cjs");
|
|
105
|
+
const mdiInvoiceList = require("./components/icons/mdi-invoice-list.qwik.cjs");
|
|
106
|
+
const mdiInvoiceListOutline = require("./components/icons/mdi-invoice-list-outline.qwik.cjs");
|
|
107
|
+
const mdiInvoiceMultiple = require("./components/icons/mdi-invoice-multiple.qwik.cjs");
|
|
108
|
+
const mdiInvoiceMultipleOutline = require("./components/icons/mdi-invoice-multiple-outline.qwik.cjs");
|
|
109
|
+
const mdiInvoiceOutline = require("./components/icons/mdi-invoice-outline.qwik.cjs");
|
|
110
|
+
const mdiInvoiceSend = require("./components/icons/mdi-invoice-send.qwik.cjs");
|
|
111
|
+
const mdiInvoiceSendOutline = require("./components/icons/mdi-invoice-send-outline.qwik.cjs");
|
|
112
|
+
const mdiInvoiceText = require("./components/icons/mdi-invoice-text.qwik.cjs");
|
|
113
|
+
const mdiInvoiceTextEdit = require("./components/icons/mdi-invoice-text-edit.qwik.cjs");
|
|
102
114
|
const mdiInvoiceTextEditOutline = require("./components/icons/mdi-invoice-text-edit-outline.qwik.cjs");
|
|
115
|
+
const mdiInvoiceTextMultiple = require("./components/icons/mdi-invoice-text-multiple.qwik.cjs");
|
|
116
|
+
const mdiInvoiceTextMultipleOutline = require("./components/icons/mdi-invoice-text-multiple-outline.qwik.cjs");
|
|
117
|
+
const mdiInvoiceTextOutline = require("./components/icons/mdi-invoice-text-outline.qwik.cjs");
|
|
103
118
|
const mdiKeyVariant = require("./components/icons/mdi-key-variant.qwik.cjs");
|
|
104
119
|
const mdiKeyboardReturn = require("./components/icons/mdi-keyboard-return.qwik.cjs");
|
|
105
120
|
const mdiLinkVariant = require("./components/icons/mdi-link-variant.qwik.cjs");
|
|
@@ -129,6 +144,7 @@ const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs
|
|
|
129
144
|
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
130
145
|
const mdiShieldCrownOutline = require("./components/icons/mdi-shield-crown-outline.qwik.cjs");
|
|
131
146
|
const mdiSpeedometer = require("./components/icons/mdi-speedometer.qwik.cjs");
|
|
147
|
+
const mdiTextEditOutline = require("./components/icons/mdi-text-edit-outline.qwik.cjs");
|
|
132
148
|
const mdiUser = require("./components/icons/mdi-user.qwik.cjs");
|
|
133
149
|
const mdiUserOutline = require("./components/icons/mdi-user-outline.qwik.cjs");
|
|
134
150
|
const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs");
|
|
@@ -338,7 +354,22 @@ exports.MdiInformationVariantCircle = mdiInformationVariantCircle.MdiInformation
|
|
|
338
354
|
exports.MdiInformationVariantCircleOutline = mdiInformationVariantCircleOutline.MdiInformationVariantCircleOutline;
|
|
339
355
|
exports.MdiInstantMix = mdiInstantMix.MdiInstantMix;
|
|
340
356
|
exports.MdiInvite = mdiInvite.MdiInvite;
|
|
357
|
+
exports.MdiInvoice = mdiInvoice.MdiInvoice;
|
|
358
|
+
exports.MdiInvoiceFast = mdiInvoiceFast.MdiInvoiceFast;
|
|
359
|
+
exports.MdiInvoiceFastOutline = mdiInvoiceFastOutline.MdiInvoiceFastOutline;
|
|
360
|
+
exports.MdiInvoiceList = mdiInvoiceList.MdiInvoiceList;
|
|
361
|
+
exports.MdiInvoiceListOutline = mdiInvoiceListOutline.MdiInvoiceListOutline;
|
|
362
|
+
exports.MdiInvoiceMultiple = mdiInvoiceMultiple.MdiInvoiceMultiple;
|
|
363
|
+
exports.MdiInvoiceMultipleOutline = mdiInvoiceMultipleOutline.MdiInvoiceMultipleOutline;
|
|
364
|
+
exports.MdiInvoiceOutline = mdiInvoiceOutline.MdiInvoiceOutline;
|
|
365
|
+
exports.MdiInvoiceSend = mdiInvoiceSend.MdiInvoiceSend;
|
|
366
|
+
exports.MdiInvoiceSendOutline = mdiInvoiceSendOutline.MdiInvoiceSendOutline;
|
|
367
|
+
exports.MdiInvoiceText = mdiInvoiceText.MdiInvoiceText;
|
|
368
|
+
exports.MdiInvoiceTextEdit = mdiInvoiceTextEdit.MdiInvoiceTextEdit;
|
|
341
369
|
exports.MdiInvoiceTextEditOutline = mdiInvoiceTextEditOutline.MdiInvoiceTextEditOutline;
|
|
370
|
+
exports.MdiInvoiceTextMultiple = mdiInvoiceTextMultiple.MdiInvoiceTextMultiple;
|
|
371
|
+
exports.MdiInvoiceTextMultipleOutline = mdiInvoiceTextMultipleOutline.MdiInvoiceTextMultipleOutline;
|
|
372
|
+
exports.MdiInvoiceTextOutline = mdiInvoiceTextOutline.MdiInvoiceTextOutline;
|
|
342
373
|
exports.MdiKeyVariant = mdiKeyVariant.MdiKeyVariant;
|
|
343
374
|
exports.MdiKeyboardReturn = mdiKeyboardReturn.MdiKeyboardReturn;
|
|
344
375
|
exports.MdiLinkVariant = mdiLinkVariant.MdiLinkVariant;
|
|
@@ -368,6 +399,7 @@ exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
|
368
399
|
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
|
369
400
|
exports.MdiShieldCrownOutline = mdiShieldCrownOutline.MdiShieldCrownOutline;
|
|
370
401
|
exports.MdiSpeedometer = mdiSpeedometer.MdiSpeedometer;
|
|
402
|
+
exports.MdiTextEditOutline = mdiTextEditOutline.MdiTextEditOutline;
|
|
371
403
|
exports.MdiUser = mdiUser.MdiUser;
|
|
372
404
|
exports.MdiUserOutline = mdiUserOutline.MdiUserOutline;
|
|
373
405
|
exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -97,7 +97,22 @@ import { MdiInformationVariantCircle } from "./components/icons/mdi-information-
|
|
|
97
97
|
import { MdiInformationVariantCircleOutline } from "./components/icons/mdi-information-variant-circle-outline.qwik.mjs";
|
|
98
98
|
import { MdiInstantMix } from "./components/icons/mdi-instant-mix.qwik.mjs";
|
|
99
99
|
import { MdiInvite } from "./components/icons/mdi-invite.qwik.mjs";
|
|
100
|
+
import { MdiInvoice } from "./components/icons/mdi-invoice.qwik.mjs";
|
|
101
|
+
import { MdiInvoiceFast } from "./components/icons/mdi-invoice-fast.qwik.mjs";
|
|
102
|
+
import { MdiInvoiceFastOutline } from "./components/icons/mdi-invoice-fast-outline.qwik.mjs";
|
|
103
|
+
import { MdiInvoiceList } from "./components/icons/mdi-invoice-list.qwik.mjs";
|
|
104
|
+
import { MdiInvoiceListOutline } from "./components/icons/mdi-invoice-list-outline.qwik.mjs";
|
|
105
|
+
import { MdiInvoiceMultiple } from "./components/icons/mdi-invoice-multiple.qwik.mjs";
|
|
106
|
+
import { MdiInvoiceMultipleOutline } from "./components/icons/mdi-invoice-multiple-outline.qwik.mjs";
|
|
107
|
+
import { MdiInvoiceOutline } from "./components/icons/mdi-invoice-outline.qwik.mjs";
|
|
108
|
+
import { MdiInvoiceSend } from "./components/icons/mdi-invoice-send.qwik.mjs";
|
|
109
|
+
import { MdiInvoiceSendOutline } from "./components/icons/mdi-invoice-send-outline.qwik.mjs";
|
|
110
|
+
import { MdiInvoiceText } from "./components/icons/mdi-invoice-text.qwik.mjs";
|
|
111
|
+
import { MdiInvoiceTextEdit } from "./components/icons/mdi-invoice-text-edit.qwik.mjs";
|
|
100
112
|
import { MdiInvoiceTextEditOutline } from "./components/icons/mdi-invoice-text-edit-outline.qwik.mjs";
|
|
113
|
+
import { MdiInvoiceTextMultiple } from "./components/icons/mdi-invoice-text-multiple.qwik.mjs";
|
|
114
|
+
import { MdiInvoiceTextMultipleOutline } from "./components/icons/mdi-invoice-text-multiple-outline.qwik.mjs";
|
|
115
|
+
import { MdiInvoiceTextOutline } from "./components/icons/mdi-invoice-text-outline.qwik.mjs";
|
|
101
116
|
import { MdiKeyVariant } from "./components/icons/mdi-key-variant.qwik.mjs";
|
|
102
117
|
import { MdiKeyboardReturn } from "./components/icons/mdi-keyboard-return.qwik.mjs";
|
|
103
118
|
import { MdiLinkVariant } from "./components/icons/mdi-link-variant.qwik.mjs";
|
|
@@ -127,6 +142,7 @@ import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs
|
|
|
127
142
|
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
128
143
|
import { MdiShieldCrownOutline } from "./components/icons/mdi-shield-crown-outline.qwik.mjs";
|
|
129
144
|
import { MdiSpeedometer } from "./components/icons/mdi-speedometer.qwik.mjs";
|
|
145
|
+
import { MdiTextEditOutline } from "./components/icons/mdi-text-edit-outline.qwik.mjs";
|
|
130
146
|
import { MdiUser } from "./components/icons/mdi-user.qwik.mjs";
|
|
131
147
|
import { MdiUserOutline } from "./components/icons/mdi-user-outline.qwik.mjs";
|
|
132
148
|
import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
|
|
@@ -390,7 +406,22 @@ export {
|
|
|
390
406
|
MdiInformationVariantCircleOutline,
|
|
391
407
|
MdiInstantMix,
|
|
392
408
|
MdiInvite,
|
|
409
|
+
MdiInvoice,
|
|
410
|
+
MdiInvoiceFast,
|
|
411
|
+
MdiInvoiceFastOutline,
|
|
412
|
+
MdiInvoiceList,
|
|
413
|
+
MdiInvoiceListOutline,
|
|
414
|
+
MdiInvoiceMultiple,
|
|
415
|
+
MdiInvoiceMultipleOutline,
|
|
416
|
+
MdiInvoiceOutline,
|
|
417
|
+
MdiInvoiceSend,
|
|
418
|
+
MdiInvoiceSendOutline,
|
|
419
|
+
MdiInvoiceText,
|
|
420
|
+
MdiInvoiceTextEdit,
|
|
393
421
|
MdiInvoiceTextEditOutline,
|
|
422
|
+
MdiInvoiceTextMultiple,
|
|
423
|
+
MdiInvoiceTextMultipleOutline,
|
|
424
|
+
MdiInvoiceTextOutline,
|
|
394
425
|
MdiKeyVariant,
|
|
395
426
|
MdiKeyboardReturn,
|
|
396
427
|
MdiLinkVariant,
|
|
@@ -422,6 +453,7 @@ export {
|
|
|
422
453
|
MdiSpeedometer,
|
|
423
454
|
MdiTerminal,
|
|
424
455
|
MdiTerminalLine,
|
|
456
|
+
MdiTextEditOutline,
|
|
425
457
|
MdiUser,
|
|
426
458
|
MdiUserOutline,
|
|
427
459
|
MdiUsersOutline,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -97,7 +97,22 @@ export * from './components/icons/mdi-information-variant-circle';
|
|
|
97
97
|
export * from './components/icons/mdi-information-variant-circle-outline';
|
|
98
98
|
export * from './components/icons/mdi-instant-mix';
|
|
99
99
|
export * from './components/icons/mdi-invite';
|
|
100
|
+
export * from './components/icons/mdi-invoice';
|
|
101
|
+
export * from './components/icons/mdi-invoice-fast';
|
|
102
|
+
export * from './components/icons/mdi-invoice-fast-outline';
|
|
103
|
+
export * from './components/icons/mdi-invoice-list';
|
|
104
|
+
export * from './components/icons/mdi-invoice-list-outline';
|
|
105
|
+
export * from './components/icons/mdi-invoice-multiple';
|
|
106
|
+
export * from './components/icons/mdi-invoice-multiple-outline';
|
|
107
|
+
export * from './components/icons/mdi-invoice-outline';
|
|
108
|
+
export * from './components/icons/mdi-invoice-send';
|
|
109
|
+
export * from './components/icons/mdi-invoice-send-outline';
|
|
110
|
+
export * from './components/icons/mdi-invoice-text';
|
|
111
|
+
export * from './components/icons/mdi-invoice-text-edit';
|
|
100
112
|
export * from './components/icons/mdi-invoice-text-edit-outline';
|
|
113
|
+
export * from './components/icons/mdi-invoice-text-multiple';
|
|
114
|
+
export * from './components/icons/mdi-invoice-text-multiple-outline';
|
|
115
|
+
export * from './components/icons/mdi-invoice-text-outline';
|
|
101
116
|
export * from './components/icons/mdi-key-variant';
|
|
102
117
|
export * from './components/icons/mdi-keyboard-return';
|
|
103
118
|
export * from './components/icons/mdi-link-variant';
|
|
@@ -127,6 +142,7 @@ export * from './components/icons/mdi-secure-outline';
|
|
|
127
142
|
export * from './components/icons/mdi-shield-crown';
|
|
128
143
|
export * from './components/icons/mdi-shield-crown-outline';
|
|
129
144
|
export * from './components/icons/mdi-speedometer';
|
|
145
|
+
export * from './components/icons/mdi-text-edit-outline';
|
|
130
146
|
export * from './components/icons/mdi-user';
|
|
131
147
|
export * from './components/icons/mdi-user-outline';
|
|
132
148
|
export * from './components/icons/mdi-users-outline';
|