@nr1e/qwik-icons 0.0.0-snapshot-20251228154426 → 0.0.0-snapshot-20251228160749

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.
Files changed (46) hide show
  1. package/lib/components/icons/flag-ae-1x1.qwik.cjs +30 -0
  2. package/lib/components/icons/flag-ae-1x1.qwik.mjs +30 -0
  3. package/lib/components/icons/flag-ae-4x3.qwik.cjs +30 -0
  4. package/lib/components/icons/flag-ae-4x3.qwik.mjs +30 -0
  5. package/lib/components/icons/flag-au-1x1.qwik.cjs +38 -0
  6. package/lib/components/icons/flag-au-1x1.qwik.mjs +38 -0
  7. package/lib/components/icons/flag-au-4x3.qwik.cjs +38 -0
  8. package/lib/components/icons/flag-au-4x3.qwik.mjs +38 -0
  9. package/lib/components/icons/flag-de-1x1.qwik.cjs +26 -0
  10. package/lib/components/icons/flag-de-1x1.qwik.mjs +26 -0
  11. package/lib/components/icons/flag-de-4x3.qwik.cjs +26 -0
  12. package/lib/components/icons/flag-de-4x3.qwik.mjs +26 -0
  13. package/lib/components/icons/flag-fr-1x1.qwik.cjs +26 -0
  14. package/lib/components/icons/flag-fr-1x1.qwik.mjs +26 -0
  15. package/lib/components/icons/flag-fr-4x3.qwik.cjs +26 -0
  16. package/lib/components/icons/flag-fr-4x3.qwik.mjs +26 -0
  17. package/lib/components/icons/flag-ie-1x1.qwik.cjs +30 -0
  18. package/lib/components/icons/flag-ie-1x1.qwik.mjs +30 -0
  19. package/lib/components/icons/flag-ie-4x3.qwik.cjs +30 -0
  20. package/lib/components/icons/flag-ie-4x3.qwik.mjs +30 -0
  21. package/lib/components/icons/flag-us-1x1.qwik.cjs +41 -0
  22. package/lib/components/icons/flag-us-1x1.qwik.mjs +41 -0
  23. package/lib/components/icons/flag-us-4x3.qwik.cjs +41 -0
  24. package/lib/components/icons/flag-us-4x3.qwik.mjs +41 -0
  25. package/lib/components/icons/flag-za-1x1.qwik.cjs +57 -0
  26. package/lib/components/icons/flag-za-1x1.qwik.mjs +57 -0
  27. package/lib/components/icons/flag-za-4x3.qwik.cjs +57 -0
  28. package/lib/components/icons/flag-za-4x3.qwik.mjs +57 -0
  29. package/lib/index.qwik.cjs +28 -0
  30. package/lib/index.qwik.mjs +28 -0
  31. package/lib-types/components/icons/flag-ae-1x1.d.ts +2 -0
  32. package/lib-types/components/icons/flag-ae-4x3.d.ts +2 -0
  33. package/lib-types/components/icons/flag-au-1x1.d.ts +2 -0
  34. package/lib-types/components/icons/flag-au-4x3.d.ts +2 -0
  35. package/lib-types/components/icons/flag-de-1x1.d.ts +2 -0
  36. package/lib-types/components/icons/flag-de-4x3.d.ts +2 -0
  37. package/lib-types/components/icons/flag-fr-1x1.d.ts +2 -0
  38. package/lib-types/components/icons/flag-fr-4x3.d.ts +2 -0
  39. package/lib-types/components/icons/flag-ie-1x1.d.ts +2 -0
  40. package/lib-types/components/icons/flag-ie-4x3.d.ts +2 -0
  41. package/lib-types/components/icons/flag-us-1x1.d.ts +2 -0
  42. package/lib-types/components/icons/flag-us-4x3.d.ts +2 -0
  43. package/lib-types/components/icons/flag-za-1x1.d.ts +2 -0
  44. package/lib-types/components/icons/flag-za-4x3.d.ts +2 -0
  45. package/lib-types/index.d.ts +14 -0
  46. package/package.json +1 -1
@@ -0,0 +1,30 @@
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 FlagAe1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#00732f",
13
+ d: "M0 0h512v170.7H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#fff",
17
+ d: "M0 170.7h512v170.6H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#000001",
21
+ d: "M0 341.3h512V512H0z"
22
+ }),
23
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
24
+ fill: "#f00",
25
+ d: "M0 0h180v512H0z"
26
+ })
27
+ ]
28
+ });
29
+ });
30
+ exports.FlagAe1x1 = FlagAe1x1;
@@ -0,0 +1,30 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagAe1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#00732f",
11
+ d: "M0 0h512v170.7H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#fff",
15
+ d: "M0 170.7h512v170.6H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#000001",
19
+ d: "M0 341.3h512V512H0z"
20
+ }),
21
+ /* @__PURE__ */ jsx("path", {
22
+ fill: "#f00",
23
+ d: "M0 0h180v512H0z"
24
+ })
25
+ ]
26
+ });
27
+ });
28
+ export {
29
+ FlagAe1x1
30
+ };
@@ -0,0 +1,30 @@
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 FlagAe4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#00732f",
13
+ d: "M0 0h640v160H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#fff",
17
+ d: "M0 160h640v160H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#000001",
21
+ d: "M0 320h640v160H0z"
22
+ }),
23
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
24
+ fill: "#f00",
25
+ d: "M0 0h220v480H0z"
26
+ })
27
+ ]
28
+ });
29
+ });
30
+ exports.FlagAe4x3 = FlagAe4x3;
@@ -0,0 +1,30 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagAe4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#00732f",
11
+ d: "M0 0h640v160H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#fff",
15
+ d: "M0 160h640v160H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#000001",
19
+ d: "M0 320h640v160H0z"
20
+ }),
21
+ /* @__PURE__ */ jsx("path", {
22
+ fill: "#f00",
23
+ d: "M0 0h220v480H0z"
24
+ })
25
+ ]
26
+ });
27
+ });
28
+ export {
29
+ FlagAe4x3
30
+ };
@@ -0,0 +1,38 @@
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 FlagAu1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#00008b",
13
+ d: "M0 0h512v512H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#fff",
17
+ d: "M256 0v32l-95 96l95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94l93-94z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#f00",
21
+ d: "m92 162l5.5 17L21 256H0v-1.5zm62-6l27 4l75 73.5V256zM256 0l-96 98l-2-22l75-76zM0 .5L96.5 95L67 91L0 24.5z"
22
+ }),
23
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
24
+ fill: "#fff",
25
+ d: "M88 0v256h80V0zM0 88v80h256V88z"
26
+ }),
27
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
28
+ fill: "#f00",
29
+ d: "M0 104v48h256v-48zM104 0v256h48V0z"
30
+ }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
32
+ fill: "#fff",
33
+ d: "m202 402.8l-45.8 5.4l4.6 45.9l-32.8-32.4l-33 32.2l4.9-45.9l-45.8-5.8L93 377.4L69 338l43.6 15l15.8-43.4l15.5 43.5l43.7-14.7l-24.3 39.2l38.8 25.1Zm222.7 8l-20.5 2.6l2.2 20.5l-14.8-14.4l-14.7 14.5l2-20.5l-20.5-2.4l17.3-11.2l-10.9-17.5l19.6 6.5l6.9-19.5l7.1 19.4l19.5-6.7l-10.7 17.6zM415 293.6l2.7-13l-9.8-9l13.2-1.5l5.5-12.1l5.5 12.1l13.2 1.5l-9.8 9l2.7 13l-11.6-6.6zm-84.1-60l-20.3 2.2l1.8 20.3l-14.4-14.5l-14.8 14.1l2.4-20.3l-20.2-2.7l17.3-10.8l-10.5-17.5l19.3 6.8l7.2-19.1l6.7 19.3l19.4-6.3l-10.9 17.3zm175.8-32.8l-20.9 2.7l2.3 20.9l-15.1-14.7l-15 14.8l2.1-21l-20.9-2.4l17.7-11.5l-11.1-17.9l20 6.7l7-19.8l7.2 19.8l19.9-6.9l-11 18zm-82.1-83.5l-20.7 2.3l1.9 20.8l-14.7-14.8L376 140l2.4-20.7l-20.7-2.8l17.7-11l-10.7-17.9l19.7 6.9l7.3-19.5l6.8 19.7l19.8-6.5l-11.1 17.6z"
34
+ })
35
+ ]
36
+ });
37
+ });
38
+ exports.FlagAu1x1 = FlagAu1x1;
@@ -0,0 +1,38 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagAu1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#00008b",
11
+ d: "M0 0h512v512H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#fff",
15
+ d: "M256 0v32l-95 96l95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94l93-94z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#f00",
19
+ d: "m92 162l5.5 17L21 256H0v-1.5zm62-6l27 4l75 73.5V256zM256 0l-96 98l-2-22l75-76zM0 .5L96.5 95L67 91L0 24.5z"
20
+ }),
21
+ /* @__PURE__ */ jsx("path", {
22
+ fill: "#fff",
23
+ d: "M88 0v256h80V0zM0 88v80h256V88z"
24
+ }),
25
+ /* @__PURE__ */ jsx("path", {
26
+ fill: "#f00",
27
+ d: "M0 104v48h256v-48zM104 0v256h48V0z"
28
+ }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ fill: "#fff",
31
+ d: "m202 402.8l-45.8 5.4l4.6 45.9l-32.8-32.4l-33 32.2l4.9-45.9l-45.8-5.8L93 377.4L69 338l43.6 15l15.8-43.4l15.5 43.5l43.7-14.7l-24.3 39.2l38.8 25.1Zm222.7 8l-20.5 2.6l2.2 20.5l-14.8-14.4l-14.7 14.5l2-20.5l-20.5-2.4l17.3-11.2l-10.9-17.5l19.6 6.5l6.9-19.5l7.1 19.4l19.5-6.7l-10.7 17.6zM415 293.6l2.7-13l-9.8-9l13.2-1.5l5.5-12.1l5.5 12.1l13.2 1.5l-9.8 9l2.7 13l-11.6-6.6zm-84.1-60l-20.3 2.2l1.8 20.3l-14.4-14.5l-14.8 14.1l2.4-20.3l-20.2-2.7l17.3-10.8l-10.5-17.5l19.3 6.8l7.2-19.1l6.7 19.3l19.4-6.3l-10.9 17.3zm175.8-32.8l-20.9 2.7l2.3 20.9l-15.1-14.7l-15 14.8l2.1-21l-20.9-2.4l17.7-11.5l-11.1-17.9l20 6.7l7-19.8l7.2 19.8l19.9-6.9l-11 18zm-82.1-83.5l-20.7 2.3l1.9 20.8l-14.7-14.8L376 140l2.4-20.7l-20.7-2.8l17.7-11l-10.7-17.9l19.7 6.9l7.3-19.5l6.8 19.7l19.8-6.5l-11.1 17.6z"
32
+ })
33
+ ]
34
+ });
35
+ });
36
+ export {
37
+ FlagAu1x1
38
+ };
@@ -0,0 +1,38 @@
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 FlagAu4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#00008b",
13
+ d: "M0 0h640v480H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#fff",
17
+ d: "m37.5 0l122 90.5L281 0h39v31l-120 89.5l120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#f00",
21
+ d: "M212 140.5L320 220v20l-135.5-99.5zm-92 10l3 17.5l-96 72H0zM320 0v1.5l-124.5 94l1-22L295 0zM0 0l119.5 88h-30L0 21z"
22
+ }),
23
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
24
+ fill: "#fff",
25
+ d: "M120.5 0v240h80V0zM0 80v80h320V80z"
26
+ }),
27
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
28
+ fill: "#f00",
29
+ d: "M0 96.5v48h320v-48zM136.5 0v240h48V0z"
30
+ }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
32
+ fill: "#fff",
33
+ d: "m527 396.7l-20.5 2.6l2.2 20.5l-14.8-14.4l-14.7 14.5l2-20.5l-20.5-2.4l17.3-11.2l-10.9-17.5l19.6 6.5l6.9-19.5l7.1 19.4l19.5-6.7l-10.7 17.6zm-3.7-117.2l2.7-13l-9.8-9l13.2-1.5l5.5-12.1l5.5 12.1l13.2 1.5l-9.8 9l2.7 13l-11.6-6.6zm-104.1-60l-20.3 2.2l1.8 20.3l-14.4-14.5l-14.8 14.1l2.4-20.3l-20.2-2.7l17.3-10.8l-10.5-17.5l19.3 6.8L387 178l6.7 19.3l19.4-6.3l-10.9 17.3l17.1 11.2ZM623 186.7l-20.9 2.7l2.3 20.9l-15.1-14.7l-15 14.8l2.1-21l-20.9-2.4l17.7-11.5l-11.1-17.9l20 6.7l7-19.8l7.2 19.8l19.9-6.9l-11 18zm-96.1-83.5l-20.7 2.3l1.9 20.8l-14.7-14.8l-15.1 14.4l2.4-20.7l-20.7-2.8l17.7-11L467 73.5l19.7 6.9l7.3-19.5l6.8 19.7l19.8-6.5l-11.1 17.6zM234 385.7l-45.8 5.4l4.6 45.9l-32.8-32.4l-33 32.2l4.9-45.9l-45.8-5.8l38.9-24.8l-24-39.4l43.6 15l15.8-43.4l15.5 43.5l43.7-14.7l-24.3 39.2l38.8 25.1Z"
34
+ })
35
+ ]
36
+ });
37
+ });
38
+ exports.FlagAu4x3 = FlagAu4x3;
@@ -0,0 +1,38 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagAu4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#00008b",
11
+ d: "M0 0h640v480H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#fff",
15
+ d: "m37.5 0l122 90.5L281 0h39v31l-120 89.5l120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#f00",
19
+ d: "M212 140.5L320 220v20l-135.5-99.5zm-92 10l3 17.5l-96 72H0zM320 0v1.5l-124.5 94l1-22L295 0zM0 0l119.5 88h-30L0 21z"
20
+ }),
21
+ /* @__PURE__ */ jsx("path", {
22
+ fill: "#fff",
23
+ d: "M120.5 0v240h80V0zM0 80v80h320V80z"
24
+ }),
25
+ /* @__PURE__ */ jsx("path", {
26
+ fill: "#f00",
27
+ d: "M0 96.5v48h320v-48zM136.5 0v240h48V0z"
28
+ }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ fill: "#fff",
31
+ d: "m527 396.7l-20.5 2.6l2.2 20.5l-14.8-14.4l-14.7 14.5l2-20.5l-20.5-2.4l17.3-11.2l-10.9-17.5l19.6 6.5l6.9-19.5l7.1 19.4l19.5-6.7l-10.7 17.6zm-3.7-117.2l2.7-13l-9.8-9l13.2-1.5l5.5-12.1l5.5 12.1l13.2 1.5l-9.8 9l2.7 13l-11.6-6.6zm-104.1-60l-20.3 2.2l1.8 20.3l-14.4-14.5l-14.8 14.1l2.4-20.3l-20.2-2.7l17.3-10.8l-10.5-17.5l19.3 6.8L387 178l6.7 19.3l19.4-6.3l-10.9 17.3l17.1 11.2ZM623 186.7l-20.9 2.7l2.3 20.9l-15.1-14.7l-15 14.8l2.1-21l-20.9-2.4l17.7-11.5l-11.1-17.9l20 6.7l7-19.8l7.2 19.8l19.9-6.9l-11 18zm-96.1-83.5l-20.7 2.3l1.9 20.8l-14.7-14.8l-15.1 14.4l2.4-20.7l-20.7-2.8l17.7-11L467 73.5l19.7 6.9l7.3-19.5l6.8 19.7l19.8-6.5l-11.1 17.6zM234 385.7l-45.8 5.4l4.6 45.9l-32.8-32.4l-33 32.2l4.9-45.9l-45.8-5.8l38.9-24.8l-24-39.4l43.6 15l15.8-43.4l15.5 43.5l43.7-14.7l-24.3 39.2l38.8 25.1Z"
32
+ })
33
+ ]
34
+ });
35
+ });
36
+ export {
37
+ FlagAu4x3
38
+ };
@@ -0,0 +1,26 @@
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 FlagDe1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#fc0",
13
+ d: "M0 341.3h512V512H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#000001",
17
+ d: "M0 0h512v170.7H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#f00",
21
+ d: "M0 170.7h512v170.6H0z"
22
+ })
23
+ ]
24
+ });
25
+ });
26
+ exports.FlagDe1x1 = FlagDe1x1;
@@ -0,0 +1,26 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagDe1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#fc0",
11
+ d: "M0 341.3h512V512H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#000001",
15
+ d: "M0 0h512v170.7H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#f00",
19
+ d: "M0 170.7h512v170.6H0z"
20
+ })
21
+ ]
22
+ });
23
+ });
24
+ export {
25
+ FlagDe1x1
26
+ };
@@ -0,0 +1,26 @@
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 FlagDe4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#fc0",
13
+ d: "M0 320h640v160H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#000001",
17
+ d: "M0 0h640v160H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#f00",
21
+ d: "M0 160h640v160H0z"
22
+ })
23
+ ]
24
+ });
25
+ });
26
+ exports.FlagDe4x3 = FlagDe4x3;
@@ -0,0 +1,26 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagDe4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#fc0",
11
+ d: "M0 320h640v160H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#000001",
15
+ d: "M0 0h640v160H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#f00",
19
+ d: "M0 160h640v160H0z"
20
+ })
21
+ ]
22
+ });
23
+ });
24
+ export {
25
+ FlagDe4x3
26
+ };
@@ -0,0 +1,26 @@
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 FlagFr1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#fff",
13
+ d: "M0 0h512v512H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#000091",
17
+ d: "M0 0h170.7v512H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#e1000f",
21
+ d: "M341.3 0H512v512H341.3z"
22
+ })
23
+ ]
24
+ });
25
+ });
26
+ exports.FlagFr1x1 = FlagFr1x1;
@@ -0,0 +1,26 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagFr1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#fff",
11
+ d: "M0 0h512v512H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#000091",
15
+ d: "M0 0h170.7v512H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#e1000f",
19
+ d: "M341.3 0H512v512H341.3z"
20
+ })
21
+ ]
22
+ });
23
+ });
24
+ export {
25
+ FlagFr1x1
26
+ };
@@ -0,0 +1,26 @@
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 FlagFr4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#fff",
13
+ d: "M0 0h640v480H0z"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ fill: "#000091",
17
+ d: "M0 0h213.3v480H0z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ fill: "#e1000f",
21
+ d: "M426.7 0H640v480H426.7z"
22
+ })
23
+ ]
24
+ });
25
+ });
26
+ exports.FlagFr4x3 = FlagFr4x3;
@@ -0,0 +1,26 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagFr4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#fff",
11
+ d: "M0 0h640v480H0z"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ fill: "#000091",
15
+ d: "M0 0h213.3v480H0z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fill: "#e1000f",
19
+ d: "M426.7 0H640v480H426.7z"
20
+ })
21
+ ]
22
+ });
23
+ });
24
+ export {
25
+ FlagFr4x3
26
+ };
@@ -0,0 +1,30 @@
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 FlagIe1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
11
+ "fill-rule": "evenodd",
12
+ "stroke-width": "1",
13
+ children: [
14
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
15
+ fill: "#fff",
16
+ d: "M0 0h512v512H0z"
17
+ }),
18
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
19
+ fill: "#009a49",
20
+ d: "M0 0h170.7v512H0z"
21
+ }),
22
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
23
+ fill: "#ff7900",
24
+ d: "M341.3 0H512v512H341.3z"
25
+ })
26
+ ]
27
+ })
28
+ });
29
+ });
30
+ exports.FlagIe1x1 = FlagIe1x1;
@@ -0,0 +1,30 @@
1
+ import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagIe1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: /* @__PURE__ */ jsxs("g", {
9
+ "fill-rule": "evenodd",
10
+ "stroke-width": "1",
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ fill: "#fff",
14
+ d: "M0 0h512v512H0z"
15
+ }),
16
+ /* @__PURE__ */ jsx("path", {
17
+ fill: "#009a49",
18
+ d: "M0 0h170.7v512H0z"
19
+ }),
20
+ /* @__PURE__ */ jsx("path", {
21
+ fill: "#ff7900",
22
+ d: "M341.3 0H512v512H341.3z"
23
+ })
24
+ ]
25
+ })
26
+ });
27
+ });
28
+ export {
29
+ FlagIe1x1
30
+ };
@@ -0,0 +1,30 @@
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 FlagIe4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
11
+ "fill-rule": "evenodd",
12
+ "stroke-width": "1",
13
+ children: [
14
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
15
+ fill: "#fff",
16
+ d: "M0 0h640v480H0z"
17
+ }),
18
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
19
+ fill: "#009a49",
20
+ d: "M0 0h213.3v480H0z"
21
+ }),
22
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
23
+ fill: "#ff7900",
24
+ d: "M426.7 0H640v480H426.7z"
25
+ })
26
+ ]
27
+ })
28
+ });
29
+ });
30
+ exports.FlagIe4x3 = FlagIe4x3;
@@ -0,0 +1,30 @@
1
+ import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagIe4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: /* @__PURE__ */ jsxs("g", {
9
+ "fill-rule": "evenodd",
10
+ "stroke-width": "1",
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ fill: "#fff",
14
+ d: "M0 0h640v480H0z"
15
+ }),
16
+ /* @__PURE__ */ jsx("path", {
17
+ fill: "#009a49",
18
+ d: "M0 0h213.3v480H0z"
19
+ }),
20
+ /* @__PURE__ */ jsx("path", {
21
+ fill: "#ff7900",
22
+ d: "M426.7 0H640v480H426.7z"
23
+ })
24
+ ]
25
+ })
26
+ });
27
+ });
28
+ export {
29
+ FlagIe4x3
30
+ };
@@ -0,0 +1,41 @@
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 FlagUs1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#bd3d44",
13
+ d: "M0 0h512v512H0"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ stroke: "#fff",
17
+ "stroke-width": "40",
18
+ d: "M0 58h512M0 137h512M0 216h512M0 295h512M0 374h512M0 453h512"
19
+ }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
21
+ fill: "#192f5d",
22
+ d: "M0 0h390v275H0z"
23
+ }),
24
+ /* @__PURE__ */ jsxRuntime.jsx("marker", {
25
+ id: "SVGEacbMe2y",
26
+ markerHeight: "30",
27
+ markerWidth: "30",
28
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
29
+ fill: "#fff",
30
+ d: "m15 0l9.3 28.6L0 11h30L5.7 28.6"
31
+ })
32
+ }),
33
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
34
+ fill: "none",
35
+ "marker-mid": "url(#SVGEacbMe2y)",
36
+ d: "m0 0l18 11h65h65h65h65h66L51 39h65h65h65h65L18 66h65h65h65h65h66L51 94h65h65h65h65L18 121h65h65h65h65h66L51 149h65h65h65h65L18 177h65h65h65h65h66L51 205h65h65h65h65L18 232h65h65h65h65h66z"
37
+ })
38
+ ]
39
+ });
40
+ });
41
+ exports.FlagUs1x1 = FlagUs1x1;
@@ -0,0 +1,41 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagUs1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#bd3d44",
11
+ d: "M0 0h512v512H0"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ stroke: "#fff",
15
+ "stroke-width": "40",
16
+ d: "M0 58h512M0 137h512M0 216h512M0 295h512M0 374h512M0 453h512"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ fill: "#192f5d",
20
+ d: "M0 0h390v275H0z"
21
+ }),
22
+ /* @__PURE__ */ jsx("marker", {
23
+ id: "SVGEacbMe2y",
24
+ markerHeight: "30",
25
+ markerWidth: "30",
26
+ children: /* @__PURE__ */ jsx("path", {
27
+ fill: "#fff",
28
+ d: "m15 0l9.3 28.6L0 11h30L5.7 28.6"
29
+ })
30
+ }),
31
+ /* @__PURE__ */ jsx("path", {
32
+ fill: "none",
33
+ "marker-mid": "url(#SVGEacbMe2y)",
34
+ d: "m0 0l18 11h65h65h65h65h66L51 39h65h65h65h65L18 66h65h65h65h65h66L51 94h65h65h65h65L18 121h65h65h65h65h66L51 149h65h65h65h65L18 177h65h65h65h65h66L51 205h65h65h65h65L18 232h65h65h65h65h66z"
35
+ })
36
+ ]
37
+ });
38
+ });
39
+ export {
40
+ FlagUs1x1
41
+ };
@@ -0,0 +1,41 @@
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 FlagUs4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
12
+ fill: "#bd3d44",
13
+ d: "M0 0h640v480H0"
14
+ }),
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ stroke: "#fff",
17
+ "stroke-width": "37",
18
+ d: "M0 55.3h640M0 129h640M0 203h640M0 277h640M0 351h640M0 425h640"
19
+ }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
21
+ fill: "#192f5d",
22
+ d: "M0 0h364.8v258.5H0"
23
+ }),
24
+ /* @__PURE__ */ jsxRuntime.jsx("marker", {
25
+ id: "SVGIRconeNR",
26
+ markerHeight: "30",
27
+ markerWidth: "30",
28
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
29
+ fill: "#fff",
30
+ d: "m14 0l9 27L0 10h28L5 27z"
31
+ })
32
+ }),
33
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
34
+ fill: "none",
35
+ "marker-mid": "url(#SVGIRconeNR)",
36
+ d: "m0 0l16 11h61h61h61h61h60L47 37h61h61h60h61L16 63h61h61h61h61h60L47 89h61h61h60h61L16 115h61h61h61h61h60L47 141h61h61h60h61L16 166h61h61h61h61h60L47 192h61h61h60h61L16 218h61h61h61h61h60z"
37
+ })
38
+ ]
39
+ });
40
+ });
41
+ exports.FlagUs4x3 = FlagUs4x3;
@@ -0,0 +1,41 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagUs4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("path", {
10
+ fill: "#bd3d44",
11
+ d: "M0 0h640v480H0"
12
+ }),
13
+ /* @__PURE__ */ jsx("path", {
14
+ stroke: "#fff",
15
+ "stroke-width": "37",
16
+ d: "M0 55.3h640M0 129h640M0 203h640M0 277h640M0 351h640M0 425h640"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ fill: "#192f5d",
20
+ d: "M0 0h364.8v258.5H0"
21
+ }),
22
+ /* @__PURE__ */ jsx("marker", {
23
+ id: "SVGIRconeNR",
24
+ markerHeight: "30",
25
+ markerWidth: "30",
26
+ children: /* @__PURE__ */ jsx("path", {
27
+ fill: "#fff",
28
+ d: "m14 0l9 27L0 10h28L5 27z"
29
+ })
30
+ }),
31
+ /* @__PURE__ */ jsx("path", {
32
+ fill: "none",
33
+ "marker-mid": "url(#SVGIRconeNR)",
34
+ d: "m0 0l16 11h61h61h61h61h60L47 37h61h61h60h61L16 63h61h61h61h61h60L47 89h61h61h60h61L16 115h61h61h61h61h60L47 141h61h61h60h61L16 166h61h61h61h61h60L47 192h61h61h60h61L16 218h61h61h61h61h60z"
35
+ })
36
+ ]
37
+ });
38
+ });
39
+ export {
40
+ FlagUs4x3
41
+ };
@@ -0,0 +1,57 @@
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 FlagZa1x1 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 512 512",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("defs", {
12
+ children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", {
13
+ id: "SVG95aPbdXE",
14
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
15
+ "fill-opacity": "0.7",
16
+ d: "M70.1 0h499.6v499.6H70.1z"
17
+ })
18
+ })
19
+ }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
21
+ "clip-path": "url(#SVG95aPbdXE)",
22
+ transform: "translate(-71.9)scale(1.0248)",
23
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
24
+ "fill-rule": "evenodd",
25
+ "stroke-width": "1",
26
+ children: [
27
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
28
+ fill: "#000001",
29
+ d: "M0 397.9v-296l220.4 147.9z"
30
+ }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
32
+ fill: "#000c8a",
33
+ d: "m150.4 499.7l247.4-166.5h351.6v166.5z"
34
+ }),
35
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
36
+ fill: "#e1392d",
37
+ d: "M134.5 0h615v166.6H397.7S137.8-1.6 134.5 0"
38
+ }),
39
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
40
+ fill: "#ffb915",
41
+ d: "M0 62.5v39.3l220.4 148L0 397.8v39.4l277.6-187.4z"
42
+ }),
43
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
44
+ fill: "#007847",
45
+ d: "M0 62.5V0h92.6l294 199h362.8v101.7H386.6l-294 198.9H0v-62.4l277.6-187.4z"
46
+ }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
48
+ fill: "#fff",
49
+ d: "M92.6 0h57.8l247.4 166.6h351.6V199H386.6zm0 499.7h57.8l247.4-166.5h351.6v-32.4H386.6z"
50
+ })
51
+ ]
52
+ })
53
+ })
54
+ ]
55
+ });
56
+ });
57
+ exports.FlagZa1x1 = FlagZa1x1;
@@ -0,0 +1,57 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagZa1x1 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 512 512",
8
+ children: [
9
+ /* @__PURE__ */ jsx("defs", {
10
+ children: /* @__PURE__ */ jsx("clipPath", {
11
+ id: "SVG95aPbdXE",
12
+ children: /* @__PURE__ */ jsx("path", {
13
+ "fill-opacity": "0.7",
14
+ d: "M70.1 0h499.6v499.6H70.1z"
15
+ })
16
+ })
17
+ }),
18
+ /* @__PURE__ */ jsx("g", {
19
+ "clip-path": "url(#SVG95aPbdXE)",
20
+ transform: "translate(-71.9)scale(1.0248)",
21
+ children: /* @__PURE__ */ jsxs("g", {
22
+ "fill-rule": "evenodd",
23
+ "stroke-width": "1",
24
+ children: [
25
+ /* @__PURE__ */ jsx("path", {
26
+ fill: "#000001",
27
+ d: "M0 397.9v-296l220.4 147.9z"
28
+ }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ fill: "#000c8a",
31
+ d: "m150.4 499.7l247.4-166.5h351.6v166.5z"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ fill: "#e1392d",
35
+ d: "M134.5 0h615v166.6H397.7S137.8-1.6 134.5 0"
36
+ }),
37
+ /* @__PURE__ */ jsx("path", {
38
+ fill: "#ffb915",
39
+ d: "M0 62.5v39.3l220.4 148L0 397.8v39.4l277.6-187.4z"
40
+ }),
41
+ /* @__PURE__ */ jsx("path", {
42
+ fill: "#007847",
43
+ d: "M0 62.5V0h92.6l294 199h362.8v101.7H386.6l-294 198.9H0v-62.4l277.6-187.4z"
44
+ }),
45
+ /* @__PURE__ */ jsx("path", {
46
+ fill: "#fff",
47
+ d: "M92.6 0h57.8l247.4 166.6h351.6V199H386.6zm0 499.7h57.8l247.4-166.5h351.6v-32.4H386.6z"
48
+ })
49
+ ]
50
+ })
51
+ })
52
+ ]
53
+ });
54
+ });
55
+ export {
56
+ FlagZa1x1
57
+ };
@@ -0,0 +1,57 @@
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 FlagZa4x3 = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 640 480",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("defs", {
12
+ children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", {
13
+ id: "SVGXmBVUWUt",
14
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
15
+ "fill-opacity": "0.7",
16
+ d: "M-71.9 0h682.7v512H-71.9z"
17
+ })
18
+ })
19
+ }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
21
+ "clip-path": "url(#SVGXmBVUWUt)",
22
+ transform: "translate(67.4)scale(.93748)",
23
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
24
+ "fill-rule": "evenodd",
25
+ "stroke-width": "1",
26
+ children: [
27
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
28
+ fill: "#000001",
29
+ d: "M-71.9 407.8V104.4L154 256.1z"
30
+ }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
32
+ fill: "#000c8a",
33
+ d: "m82.2 512.1l253.6-170.6H696V512H82.2z"
34
+ }),
35
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
36
+ fill: "#e1392d",
37
+ d: "M66 0h630v170.8H335.7S69.3-1.7 66 0"
38
+ }),
39
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
40
+ fill: "#ffb915",
41
+ d: "M-71.9 64v40.4L154 256L-72 407.8v40.3l284.5-192z"
42
+ }),
43
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
44
+ fill: "#007847",
45
+ d: "M-71.9 64V0h95l301.2 204h371.8v104.2H324.3L23 512h-94.9v-63.9l284.4-192L-71.8 64z"
46
+ }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
48
+ fill: "#fff",
49
+ d: "M23 0h59.2l253.6 170.7H696V204H324.3zm0 512.1h59.2l253.6-170.6H696v-33.2H324.3L23 512z"
50
+ })
51
+ ]
52
+ })
53
+ })
54
+ ]
55
+ });
56
+ });
57
+ exports.FlagZa4x3 = FlagZa4x3;
@@ -0,0 +1,57 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const FlagZa4x3 = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 640 480",
8
+ children: [
9
+ /* @__PURE__ */ jsx("defs", {
10
+ children: /* @__PURE__ */ jsx("clipPath", {
11
+ id: "SVGXmBVUWUt",
12
+ children: /* @__PURE__ */ jsx("path", {
13
+ "fill-opacity": "0.7",
14
+ d: "M-71.9 0h682.7v512H-71.9z"
15
+ })
16
+ })
17
+ }),
18
+ /* @__PURE__ */ jsx("g", {
19
+ "clip-path": "url(#SVGXmBVUWUt)",
20
+ transform: "translate(67.4)scale(.93748)",
21
+ children: /* @__PURE__ */ jsxs("g", {
22
+ "fill-rule": "evenodd",
23
+ "stroke-width": "1",
24
+ children: [
25
+ /* @__PURE__ */ jsx("path", {
26
+ fill: "#000001",
27
+ d: "M-71.9 407.8V104.4L154 256.1z"
28
+ }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ fill: "#000c8a",
31
+ d: "m82.2 512.1l253.6-170.6H696V512H82.2z"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ fill: "#e1392d",
35
+ d: "M66 0h630v170.8H335.7S69.3-1.7 66 0"
36
+ }),
37
+ /* @__PURE__ */ jsx("path", {
38
+ fill: "#ffb915",
39
+ d: "M-71.9 64v40.4L154 256L-72 407.8v40.3l284.5-192z"
40
+ }),
41
+ /* @__PURE__ */ jsx("path", {
42
+ fill: "#007847",
43
+ d: "M-71.9 64V0h95l301.2 204h371.8v104.2H324.3L23 512h-94.9v-63.9l284.4-192L-71.8 64z"
44
+ }),
45
+ /* @__PURE__ */ jsx("path", {
46
+ fill: "#fff",
47
+ d: "M23 0h59.2l253.6 170.7H696V204H324.3zm0 512.1h59.2l253.6-170.6H696v-33.2H324.3L23 512z"
48
+ })
49
+ ]
50
+ })
51
+ })
52
+ ]
53
+ });
54
+ });
55
+ export {
56
+ FlagZa4x3
57
+ };
@@ -62,6 +62,20 @@ const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs")
62
62
  const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs");
63
63
  const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
64
64
  const logosMicrosoftIcon = require("./components/icons/logos-microsoft-icon.qwik.cjs");
65
+ const flagAe1x1 = require("./components/icons/flag-ae-1x1.qwik.cjs");
66
+ const flagAe4x3 = require("./components/icons/flag-ae-4x3.qwik.cjs");
67
+ const flagAu1x1 = require("./components/icons/flag-au-1x1.qwik.cjs");
68
+ const flagAu4x3 = require("./components/icons/flag-au-4x3.qwik.cjs");
69
+ const flagDe1x1 = require("./components/icons/flag-de-1x1.qwik.cjs");
70
+ const flagDe4x3 = require("./components/icons/flag-de-4x3.qwik.cjs");
71
+ const flagFr1x1 = require("./components/icons/flag-fr-1x1.qwik.cjs");
72
+ const flagFr4x3 = require("./components/icons/flag-fr-4x3.qwik.cjs");
73
+ const flagIe1x1 = require("./components/icons/flag-ie-1x1.qwik.cjs");
74
+ const flagIe4x3 = require("./components/icons/flag-ie-4x3.qwik.cjs");
75
+ const flagUs1x1 = require("./components/icons/flag-us-1x1.qwik.cjs");
76
+ const flagUs4x3 = require("./components/icons/flag-us-4x3.qwik.cjs");
77
+ const flagZa1x1 = require("./components/icons/flag-za-1x1.qwik.cjs");
78
+ const flagZa4x3 = require("./components/icons/flag-za-4x3.qwik.cjs");
65
79
  exports.Svg = svg.Svg;
66
80
  exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
67
81
  exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
@@ -124,3 +138,17 @@ exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
124
138
  exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
125
139
  exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
126
140
  exports.LogosMicrosoftIcon = logosMicrosoftIcon.LogosMicrosoftIcon;
141
+ exports.FlagAe1x1 = flagAe1x1.FlagAe1x1;
142
+ exports.FlagAe4x3 = flagAe4x3.FlagAe4x3;
143
+ exports.FlagAu1x1 = flagAu1x1.FlagAu1x1;
144
+ exports.FlagAu4x3 = flagAu4x3.FlagAu4x3;
145
+ exports.FlagDe1x1 = flagDe1x1.FlagDe1x1;
146
+ exports.FlagDe4x3 = flagDe4x3.FlagDe4x3;
147
+ exports.FlagFr1x1 = flagFr1x1.FlagFr1x1;
148
+ exports.FlagFr4x3 = flagFr4x3.FlagFr4x3;
149
+ exports.FlagIe1x1 = flagIe1x1.FlagIe1x1;
150
+ exports.FlagIe4x3 = flagIe4x3.FlagIe4x3;
151
+ exports.FlagUs1x1 = flagUs1x1.FlagUs1x1;
152
+ exports.FlagUs4x3 = flagUs4x3.FlagUs4x3;
153
+ exports.FlagZa1x1 = flagZa1x1.FlagZa1x1;
154
+ exports.FlagZa4x3 = flagZa4x3.FlagZa4x3;
@@ -60,7 +60,35 @@ import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
60
60
  import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs";
61
61
  import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
62
62
  import { LogosMicrosoftIcon } from "./components/icons/logos-microsoft-icon.qwik.mjs";
63
+ import { FlagAe1x1 } from "./components/icons/flag-ae-1x1.qwik.mjs";
64
+ import { FlagAe4x3 } from "./components/icons/flag-ae-4x3.qwik.mjs";
65
+ import { FlagAu1x1 } from "./components/icons/flag-au-1x1.qwik.mjs";
66
+ import { FlagAu4x3 } from "./components/icons/flag-au-4x3.qwik.mjs";
67
+ import { FlagDe1x1 } from "./components/icons/flag-de-1x1.qwik.mjs";
68
+ import { FlagDe4x3 } from "./components/icons/flag-de-4x3.qwik.mjs";
69
+ import { FlagFr1x1 } from "./components/icons/flag-fr-1x1.qwik.mjs";
70
+ import { FlagFr4x3 } from "./components/icons/flag-fr-4x3.qwik.mjs";
71
+ import { FlagIe1x1 } from "./components/icons/flag-ie-1x1.qwik.mjs";
72
+ import { FlagIe4x3 } from "./components/icons/flag-ie-4x3.qwik.mjs";
73
+ import { FlagUs1x1 } from "./components/icons/flag-us-1x1.qwik.mjs";
74
+ import { FlagUs4x3 } from "./components/icons/flag-us-4x3.qwik.mjs";
75
+ import { FlagZa1x1 } from "./components/icons/flag-za-1x1.qwik.mjs";
76
+ import { FlagZa4x3 } from "./components/icons/flag-za-4x3.qwik.mjs";
63
77
  export {
78
+ FlagAe1x1,
79
+ FlagAe4x3,
80
+ FlagAu1x1,
81
+ FlagAu4x3,
82
+ FlagDe1x1,
83
+ FlagDe4x3,
84
+ FlagFr1x1,
85
+ FlagFr4x3,
86
+ FlagIe1x1,
87
+ FlagIe4x3,
88
+ FlagUs1x1,
89
+ FlagUs4x3,
90
+ FlagZa1x1,
91
+ FlagZa4x3,
64
92
  LogosGoogleIcon,
65
93
  LogosMicrosoftIcon,
66
94
  MdiAddCircle,
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagAe1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagAe4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagAu1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagAu4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagDe1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagDe4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagFr1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagFr4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagIe1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagIe4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagUs1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagUs4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagZa1x1: import("@builder.io/qwik").Component<IconProps>;
@@ -0,0 +1,2 @@
1
+ import { IconProps } from '../svg';
2
+ export declare const FlagZa4x3: import("@builder.io/qwik").Component<IconProps>;
@@ -60,3 +60,17 @@ export * from './components/icons/mdi-users-outline';
60
60
  export * from './components/icons/mdi-wrench-outline';
61
61
  export * from './components/icons/logos-google-icon';
62
62
  export * from './components/icons/logos-microsoft-icon';
63
+ export * from './components/icons/flag-ae-1x1';
64
+ export * from './components/icons/flag-ae-4x3';
65
+ export * from './components/icons/flag-au-1x1';
66
+ export * from './components/icons/flag-au-4x3';
67
+ export * from './components/icons/flag-de-1x1';
68
+ export * from './components/icons/flag-de-4x3';
69
+ export * from './components/icons/flag-fr-1x1';
70
+ export * from './components/icons/flag-fr-4x3';
71
+ export * from './components/icons/flag-ie-1x1';
72
+ export * from './components/icons/flag-ie-4x3';
73
+ export * from './components/icons/flag-us-1x1';
74
+ export * from './components/icons/flag-us-4x3';
75
+ export * from './components/icons/flag-za-1x1';
76
+ export * from './components/icons/flag-za-4x3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-icons",
3
- "version": "0.0.0-snapshot-20251228154426",
3
+ "version": "0.0.0-snapshot-20251228160749",
4
4
  "description": "NR1E Qwik Icons Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {