@nr1e/qwik-icons 0.0.0-snapshot-20251228155206 → 0.0.0-snapshot-20251229155304
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/flag-ae-1x1.qwik.cjs +30 -0
- package/lib/components/icons/flag-ae-1x1.qwik.mjs +30 -0
- package/lib/components/icons/flag-ae-4x3.qwik.cjs +30 -0
- package/lib/components/icons/flag-ae-4x3.qwik.mjs +30 -0
- package/lib/components/icons/flag-au-1x1.qwik.cjs +38 -0
- package/lib/components/icons/flag-au-1x1.qwik.mjs +38 -0
- package/lib/components/icons/flag-au-4x3.qwik.cjs +38 -0
- package/lib/components/icons/flag-au-4x3.qwik.mjs +38 -0
- package/lib/components/icons/flag-de-1x1.qwik.cjs +26 -0
- package/lib/components/icons/flag-de-1x1.qwik.mjs +26 -0
- package/lib/components/icons/flag-de-4x3.qwik.cjs +26 -0
- package/lib/components/icons/flag-de-4x3.qwik.mjs +26 -0
- package/lib/components/icons/flag-fr-1x1.qwik.cjs +26 -0
- package/lib/components/icons/flag-fr-1x1.qwik.mjs +26 -0
- package/lib/components/icons/flag-fr-4x3.qwik.cjs +26 -0
- package/lib/components/icons/flag-fr-4x3.qwik.mjs +26 -0
- package/lib/components/icons/flag-ie-1x1.qwik.cjs +30 -0
- package/lib/components/icons/flag-ie-1x1.qwik.mjs +30 -0
- package/lib/components/icons/flag-ie-4x3.qwik.cjs +30 -0
- package/lib/components/icons/flag-ie-4x3.qwik.mjs +30 -0
- package/lib/components/icons/flag-us-1x1.qwik.cjs +41 -0
- package/lib/components/icons/flag-us-1x1.qwik.mjs +41 -0
- package/lib/components/icons/flag-us-4x3.qwik.cjs +41 -0
- package/lib/components/icons/flag-us-4x3.qwik.mjs +41 -0
- package/lib/components/icons/flag-za-1x1.qwik.cjs +57 -0
- package/lib/components/icons/flag-za-1x1.qwik.mjs +57 -0
- package/lib/components/icons/flag-za-4x3.qwik.cjs +57 -0
- package/lib/components/icons/flag-za-4x3.qwik.mjs +57 -0
- package/lib/components/icons/mdi-brain-freeze-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-brain-freeze-outline.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +30 -0
- package/lib/index.qwik.mjs +30 -0
- package/lib-types/components/icons/flag-ae-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-ae-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-au-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-au-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-de-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-de-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-fr-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-fr-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-ie-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-ie-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-us-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-us-4x3.d.ts +2 -0
- package/lib-types/components/icons/flag-za-1x1.d.ts +2 -0
- package/lib-types/components/icons/flag-za-4x3.d.ts +2 -0
- package/lib-types/components/icons/mdi-brain-freeze-outline.d.ts +2 -0
- package/lib-types/index.d.ts +15 -0
- package/package.json +1 -1
|
@@ -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
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiBrainFreezeOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M13 3c3.88 0 7 3.14 7 7c0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59c.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5c0-4.97-4.04-9-9-9m4.33 8.3l-1.96.51l1.44 1.46c.35.34.35.92 0 1.27s-.93.35-1.27 0l-1.45-1.44l-.52 1.96c-.12.49-.61.76-1.07.64a.91.91 0 0 1-.66-1.11l.53-1.96l-1.96.53a.91.91 0 0 1-1.11-.66c-.12-.45.16-.95.64-1.07l1.96-.52l-1.44-1.45a.9.9 0 0 1 1.27-1.27l1.46 1.44l.51-1.96c.12-.49.62-.77 1.09-.64c.49.13.77.62.64 1.1L14.9 8.1l1.97-.53c.48-.13.97.15 1.1.64c.13.47-.15.97-.64 1.09"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiBrainFreezeOutline = MdiBrainFreezeOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiBrainFreezeOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M13 3c3.88 0 7 3.14 7 7c0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59c.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5c0-4.97-4.04-9-9-9m4.33 8.3l-1.96.51l1.44 1.46c.35.34.35.92 0 1.27s-.93.35-1.27 0l-1.45-1.44l-.52 1.96c-.12.49-.61.76-1.07.64a.91.91 0 0 1-.66-1.11l.53-1.96l-1.96.53a.91.91 0 0 1-1.11-.66c-.12-.45.16-.95.64-1.07l1.96-.52l-1.44-1.45a.9.9 0 0 1 1.27-1.27l1.46 1.44l.51-1.96c.12-.49.62-.77 1.09-.64c.49.13.77.62.64 1.1L14.9 8.1l1.97-.53c.48-.13.97.15 1.1.64c.13.47-.15.97-.64 1.09"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiBrainFreezeOutline
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -8,6 +8,7 @@ const mdiAlertBoxOutline = require("./components/icons/mdi-alert-box-outline.qwi
|
|
|
8
8
|
const mdiArrowBackCircle = require("./components/icons/mdi-arrow-back-circle.qwik.cjs");
|
|
9
9
|
const mdiArrowForwardCircle = require("./components/icons/mdi-arrow-forward-circle.qwik.cjs");
|
|
10
10
|
const mdiBrain = require("./components/icons/mdi-brain.qwik.cjs");
|
|
11
|
+
const mdiBrainFreezeOutline = require("./components/icons/mdi-brain-freeze-outline.qwik.cjs");
|
|
11
12
|
const mdiCheckCircle = require("./components/icons/mdi-check-circle.qwik.cjs");
|
|
12
13
|
const mdiCheckCircleOutline = require("./components/icons/mdi-check-circle-outline.qwik.cjs");
|
|
13
14
|
const mdiChevronDown = require("./components/icons/mdi-chevron-down.qwik.cjs");
|
|
@@ -62,6 +63,20 @@ const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs")
|
|
|
62
63
|
const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs");
|
|
63
64
|
const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
|
|
64
65
|
const logosMicrosoftIcon = require("./components/icons/logos-microsoft-icon.qwik.cjs");
|
|
66
|
+
const flagAe1x1 = require("./components/icons/flag-ae-1x1.qwik.cjs");
|
|
67
|
+
const flagAe4x3 = require("./components/icons/flag-ae-4x3.qwik.cjs");
|
|
68
|
+
const flagAu1x1 = require("./components/icons/flag-au-1x1.qwik.cjs");
|
|
69
|
+
const flagAu4x3 = require("./components/icons/flag-au-4x3.qwik.cjs");
|
|
70
|
+
const flagDe1x1 = require("./components/icons/flag-de-1x1.qwik.cjs");
|
|
71
|
+
const flagDe4x3 = require("./components/icons/flag-de-4x3.qwik.cjs");
|
|
72
|
+
const flagFr1x1 = require("./components/icons/flag-fr-1x1.qwik.cjs");
|
|
73
|
+
const flagFr4x3 = require("./components/icons/flag-fr-4x3.qwik.cjs");
|
|
74
|
+
const flagIe1x1 = require("./components/icons/flag-ie-1x1.qwik.cjs");
|
|
75
|
+
const flagIe4x3 = require("./components/icons/flag-ie-4x3.qwik.cjs");
|
|
76
|
+
const flagUs1x1 = require("./components/icons/flag-us-1x1.qwik.cjs");
|
|
77
|
+
const flagUs4x3 = require("./components/icons/flag-us-4x3.qwik.cjs");
|
|
78
|
+
const flagZa1x1 = require("./components/icons/flag-za-1x1.qwik.cjs");
|
|
79
|
+
const flagZa4x3 = require("./components/icons/flag-za-4x3.qwik.cjs");
|
|
65
80
|
exports.Svg = svg.Svg;
|
|
66
81
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
67
82
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
@@ -70,6 +85,7 @@ exports.MdiAlertBoxOutline = mdiAlertBoxOutline.MdiAlertBoxOutline;
|
|
|
70
85
|
exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
|
|
71
86
|
exports.MdiArrowForwardCircle = mdiArrowForwardCircle.MdiArrowForwardCircle;
|
|
72
87
|
exports.MdiBrain = mdiBrain.MdiBrain;
|
|
88
|
+
exports.MdiBrainFreezeOutline = mdiBrainFreezeOutline.MdiBrainFreezeOutline;
|
|
73
89
|
exports.MdiCheckCircle = mdiCheckCircle.MdiCheckCircle;
|
|
74
90
|
exports.MdiCheckCircleOutline = mdiCheckCircleOutline.MdiCheckCircleOutline;
|
|
75
91
|
exports.MdiChevronDown = mdiChevronDown.MdiChevronDown;
|
|
@@ -124,3 +140,17 @@ exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
|
|
|
124
140
|
exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
|
|
125
141
|
exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
|
|
126
142
|
exports.LogosMicrosoftIcon = logosMicrosoftIcon.LogosMicrosoftIcon;
|
|
143
|
+
exports.FlagAe1x1 = flagAe1x1.FlagAe1x1;
|
|
144
|
+
exports.FlagAe4x3 = flagAe4x3.FlagAe4x3;
|
|
145
|
+
exports.FlagAu1x1 = flagAu1x1.FlagAu1x1;
|
|
146
|
+
exports.FlagAu4x3 = flagAu4x3.FlagAu4x3;
|
|
147
|
+
exports.FlagDe1x1 = flagDe1x1.FlagDe1x1;
|
|
148
|
+
exports.FlagDe4x3 = flagDe4x3.FlagDe4x3;
|
|
149
|
+
exports.FlagFr1x1 = flagFr1x1.FlagFr1x1;
|
|
150
|
+
exports.FlagFr4x3 = flagFr4x3.FlagFr4x3;
|
|
151
|
+
exports.FlagIe1x1 = flagIe1x1.FlagIe1x1;
|
|
152
|
+
exports.FlagIe4x3 = flagIe4x3.FlagIe4x3;
|
|
153
|
+
exports.FlagUs1x1 = flagUs1x1.FlagUs1x1;
|
|
154
|
+
exports.FlagUs4x3 = flagUs4x3.FlagUs4x3;
|
|
155
|
+
exports.FlagZa1x1 = flagZa1x1.FlagZa1x1;
|
|
156
|
+
exports.FlagZa4x3 = flagZa4x3.FlagZa4x3;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { MdiAlertBoxOutline } from "./components/icons/mdi-alert-box-outline.qwi
|
|
|
6
6
|
import { MdiArrowBackCircle } from "./components/icons/mdi-arrow-back-circle.qwik.mjs";
|
|
7
7
|
import { MdiArrowForwardCircle } from "./components/icons/mdi-arrow-forward-circle.qwik.mjs";
|
|
8
8
|
import { MdiBrain } from "./components/icons/mdi-brain.qwik.mjs";
|
|
9
|
+
import { MdiBrainFreezeOutline } from "./components/icons/mdi-brain-freeze-outline.qwik.mjs";
|
|
9
10
|
import { MdiCheckCircle } from "./components/icons/mdi-check-circle.qwik.mjs";
|
|
10
11
|
import { MdiCheckCircleOutline } from "./components/icons/mdi-check-circle-outline.qwik.mjs";
|
|
11
12
|
import { MdiChevronDown } from "./components/icons/mdi-chevron-down.qwik.mjs";
|
|
@@ -60,7 +61,35 @@ import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
|
|
|
60
61
|
import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs";
|
|
61
62
|
import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
|
|
62
63
|
import { LogosMicrosoftIcon } from "./components/icons/logos-microsoft-icon.qwik.mjs";
|
|
64
|
+
import { FlagAe1x1 } from "./components/icons/flag-ae-1x1.qwik.mjs";
|
|
65
|
+
import { FlagAe4x3 } from "./components/icons/flag-ae-4x3.qwik.mjs";
|
|
66
|
+
import { FlagAu1x1 } from "./components/icons/flag-au-1x1.qwik.mjs";
|
|
67
|
+
import { FlagAu4x3 } from "./components/icons/flag-au-4x3.qwik.mjs";
|
|
68
|
+
import { FlagDe1x1 } from "./components/icons/flag-de-1x1.qwik.mjs";
|
|
69
|
+
import { FlagDe4x3 } from "./components/icons/flag-de-4x3.qwik.mjs";
|
|
70
|
+
import { FlagFr1x1 } from "./components/icons/flag-fr-1x1.qwik.mjs";
|
|
71
|
+
import { FlagFr4x3 } from "./components/icons/flag-fr-4x3.qwik.mjs";
|
|
72
|
+
import { FlagIe1x1 } from "./components/icons/flag-ie-1x1.qwik.mjs";
|
|
73
|
+
import { FlagIe4x3 } from "./components/icons/flag-ie-4x3.qwik.mjs";
|
|
74
|
+
import { FlagUs1x1 } from "./components/icons/flag-us-1x1.qwik.mjs";
|
|
75
|
+
import { FlagUs4x3 } from "./components/icons/flag-us-4x3.qwik.mjs";
|
|
76
|
+
import { FlagZa1x1 } from "./components/icons/flag-za-1x1.qwik.mjs";
|
|
77
|
+
import { FlagZa4x3 } from "./components/icons/flag-za-4x3.qwik.mjs";
|
|
63
78
|
export {
|
|
79
|
+
FlagAe1x1,
|
|
80
|
+
FlagAe4x3,
|
|
81
|
+
FlagAu1x1,
|
|
82
|
+
FlagAu4x3,
|
|
83
|
+
FlagDe1x1,
|
|
84
|
+
FlagDe4x3,
|
|
85
|
+
FlagFr1x1,
|
|
86
|
+
FlagFr4x3,
|
|
87
|
+
FlagIe1x1,
|
|
88
|
+
FlagIe4x3,
|
|
89
|
+
FlagUs1x1,
|
|
90
|
+
FlagUs4x3,
|
|
91
|
+
FlagZa1x1,
|
|
92
|
+
FlagZa4x3,
|
|
64
93
|
LogosGoogleIcon,
|
|
65
94
|
LogosMicrosoftIcon,
|
|
66
95
|
MdiAddCircle,
|
|
@@ -70,6 +99,7 @@ export {
|
|
|
70
99
|
MdiArrowBackCircle,
|
|
71
100
|
MdiArrowForwardCircle,
|
|
72
101
|
MdiBrain,
|
|
102
|
+
MdiBrainFreezeOutline,
|
|
73
103
|
MdiCheckCircle,
|
|
74
104
|
MdiCheckCircleOutline,
|
|
75
105
|
MdiChevronDown,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from './components/icons/mdi-alert-box-outline';
|
|
|
6
6
|
export * from './components/icons/mdi-arrow-back-circle';
|
|
7
7
|
export * from './components/icons/mdi-arrow-forward-circle';
|
|
8
8
|
export * from './components/icons/mdi-brain';
|
|
9
|
+
export * from './components/icons/mdi-brain-freeze-outline';
|
|
9
10
|
export * from './components/icons/mdi-check-circle';
|
|
10
11
|
export * from './components/icons/mdi-check-circle-outline';
|
|
11
12
|
export * from './components/icons/mdi-chevron-down';
|
|
@@ -60,3 +61,17 @@ export * from './components/icons/mdi-users-outline';
|
|
|
60
61
|
export * from './components/icons/mdi-wrench-outline';
|
|
61
62
|
export * from './components/icons/logos-google-icon';
|
|
62
63
|
export * from './components/icons/logos-microsoft-icon';
|
|
64
|
+
export * from './components/icons/flag-ae-1x1';
|
|
65
|
+
export * from './components/icons/flag-ae-4x3';
|
|
66
|
+
export * from './components/icons/flag-au-1x1';
|
|
67
|
+
export * from './components/icons/flag-au-4x3';
|
|
68
|
+
export * from './components/icons/flag-de-1x1';
|
|
69
|
+
export * from './components/icons/flag-de-4x3';
|
|
70
|
+
export * from './components/icons/flag-fr-1x1';
|
|
71
|
+
export * from './components/icons/flag-fr-4x3';
|
|
72
|
+
export * from './components/icons/flag-ie-1x1';
|
|
73
|
+
export * from './components/icons/flag-ie-4x3';
|
|
74
|
+
export * from './components/icons/flag-us-1x1';
|
|
75
|
+
export * from './components/icons/flag-us-4x3';
|
|
76
|
+
export * from './components/icons/flag-za-1x1';
|
|
77
|
+
export * from './components/icons/flag-za-4x3';
|