@nr1e/qwik-icons 0.0.5 → 0.0.6
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/logos-google-icon.qwik.cjs +30 -0
- package/lib/components/icons/logos-google-icon.qwik.mjs +30 -0
- package/lib/components/icons/logos-microsoft-icon.qwik.cjs +30 -0
- package/lib/components/icons/logos-microsoft-icon.qwik.mjs +30 -0
- package/lib/index.qwik.cjs +32 -0
- package/lib/index.qwik.mjs +32 -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/logos-google-icon.d.ts +2 -0
- package/lib-types/components/icons/logos-microsoft-icon.d.ts +2 -0
- package/lib-types/index.d.ts +16 -0
- package/package.json +2 -2
|
@@ -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,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 LogosGoogleIcon = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 256 262",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
12
|
+
fill: "#4285f4",
|
|
13
|
+
d: "M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622l38.755 30.023l2.685.268c24.659-22.774 38.875-56.282 38.875-96.027"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
16
|
+
fill: "#34a853",
|
|
17
|
+
d: "M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055c-34.523 0-63.824-22.773-74.269-54.25l-1.531.13l-40.298 31.187l-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
20
|
+
fill: "#fbbc05",
|
|
21
|
+
d: "M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82c0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602z"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
24
|
+
fill: "#eb4335",
|
|
25
|
+
d: "M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0C79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251"
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
exports.LogosGoogleIcon = LogosGoogleIcon;
|
|
@@ -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 LogosGoogleIcon = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 256 262",
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", {
|
|
10
|
+
fill: "#4285f4",
|
|
11
|
+
d: "M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622l38.755 30.023l2.685.268c24.659-22.774 38.875-56.282 38.875-96.027"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ jsx("path", {
|
|
14
|
+
fill: "#34a853",
|
|
15
|
+
d: "M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055c-34.523 0-63.824-22.773-74.269-54.25l-1.531.13l-40.298 31.187l-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", {
|
|
18
|
+
fill: "#fbbc05",
|
|
19
|
+
d: "M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82c0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602z"
|
|
20
|
+
}),
|
|
21
|
+
/* @__PURE__ */ jsx("path", {
|
|
22
|
+
fill: "#eb4335",
|
|
23
|
+
d: "M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0C79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
export {
|
|
29
|
+
LogosGoogleIcon
|
|
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 LogosMicrosoftIcon = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 256 256",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
12
|
+
fill: "#f1511b",
|
|
13
|
+
d: "M121.666 121.666H0V0h121.666z"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
16
|
+
fill: "#80cc28",
|
|
17
|
+
d: "M256 121.666H134.335V0H256z"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
20
|
+
fill: "#00adef",
|
|
21
|
+
d: "M121.663 256.002H0V134.336h121.663z"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
24
|
+
fill: "#fbbc09",
|
|
25
|
+
d: "M256 256.002H134.335V134.336H256z"
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
exports.LogosMicrosoftIcon = LogosMicrosoftIcon;
|
|
@@ -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 LogosMicrosoftIcon = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 256 256",
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", {
|
|
10
|
+
fill: "#f1511b",
|
|
11
|
+
d: "M121.666 121.666H0V0h121.666z"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ jsx("path", {
|
|
14
|
+
fill: "#80cc28",
|
|
15
|
+
d: "M256 121.666H134.335V0H256z"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", {
|
|
18
|
+
fill: "#00adef",
|
|
19
|
+
d: "M121.663 256.002H0V134.336h121.663z"
|
|
20
|
+
}),
|
|
21
|
+
/* @__PURE__ */ jsx("path", {
|
|
22
|
+
fill: "#fbbc09",
|
|
23
|
+
d: "M256 256.002H134.335V134.336H256z"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
export {
|
|
29
|
+
LogosMicrosoftIcon
|
|
30
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -60,6 +60,22 @@ const mdiUser = require("./components/icons/mdi-user.qwik.cjs");
|
|
|
60
60
|
const mdiUserOutline = require("./components/icons/mdi-user-outline.qwik.cjs");
|
|
61
61
|
const mdiUsersOutline = require("./components/icons/mdi-users-outline.qwik.cjs");
|
|
62
62
|
const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs");
|
|
63
|
+
const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
|
|
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");
|
|
63
79
|
exports.Svg = svg.Svg;
|
|
64
80
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
65
81
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
@@ -120,3 +136,19 @@ exports.MdiUser = mdiUser.MdiUser;
|
|
|
120
136
|
exports.MdiUserOutline = mdiUserOutline.MdiUserOutline;
|
|
121
137
|
exports.MdiUsersOutline = mdiUsersOutline.MdiUsersOutline;
|
|
122
138
|
exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
|
|
139
|
+
exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
|
|
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;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -58,7 +58,39 @@ import { MdiUser } from "./components/icons/mdi-user.qwik.mjs";
|
|
|
58
58
|
import { MdiUserOutline } from "./components/icons/mdi-user-outline.qwik.mjs";
|
|
59
59
|
import { MdiUsersOutline } from "./components/icons/mdi-users-outline.qwik.mjs";
|
|
60
60
|
import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs";
|
|
61
|
+
import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
|
|
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";
|
|
61
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,
|
|
92
|
+
LogosGoogleIcon,
|
|
93
|
+
LogosMicrosoftIcon,
|
|
62
94
|
MdiAddCircle,
|
|
63
95
|
MdiAddCircleOutline,
|
|
64
96
|
MdiAlert,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -58,3 +58,19 @@ export * from './components/icons/mdi-user';
|
|
|
58
58
|
export * from './components/icons/mdi-user-outline';
|
|
59
59
|
export * from './components/icons/mdi-users-outline';
|
|
60
60
|
export * from './components/icons/mdi-wrench-outline';
|
|
61
|
+
export * from './components/icons/logos-google-icon';
|
|
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';
|