@szum-tech/design-system 2.0.2 → 2.0.4

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.
@@ -0,0 +1,89 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ export * from '@radix-ui/react-icons';
3
+
4
+ // src/icons/google-logo.tsx
5
+ function GoogleLogoIcon(props) {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ viewBox: "0 0 24 24",
11
+ strokeWidth: "2",
12
+ stroke: "currentColor",
13
+ fill: "none",
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ ...props,
17
+ children: [
18
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
19
+ /* @__PURE__ */ jsx(
20
+ "path",
21
+ {
22
+ d: "M12 2a9.96 9.96 0 0 1 6.29 2.226a1 1 0 0 1 .04 1.52l-1.51 1.362a1 1 0 0 1 -1.265 .06a6 6 0 1 0 2.103 6.836l.001 -.004h-3.66a1 1 0 0 1 -.992 -.883l-.007 -.117v-2a1 1 0 0 1 1 -1h6.945a1 1 0 0 1 .994 .89c.04 .367 .061 .737 .061 1.11c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10z",
23
+ strokeWidth: "0",
24
+ fill: "currentColor"
25
+ }
26
+ )
27
+ ]
28
+ }
29
+ );
30
+ }
31
+ function LoadingIcon(props) {
32
+ return /* @__PURE__ */ jsx(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
37
+ fill: "currentColor",
38
+ version: "1.1",
39
+ viewBox: "0 0 26.349 26.35",
40
+ xmlSpace: "preserve",
41
+ ...props,
42
+ children: /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsxs("g", { children: [
43
+ /* @__PURE__ */ jsx("circle", { cx: "13.792", cy: "3.082", r: "3.082" }),
44
+ /* @__PURE__ */ jsx("circle", { cx: "13.792", cy: "24.501", r: "1.849" }),
45
+ /* @__PURE__ */ jsx("circle", { cx: "6.219", cy: "6.218", r: "2.774" }),
46
+ /* @__PURE__ */ jsx("circle", { cx: "21.365", cy: "21.363", r: "1.541" }),
47
+ /* @__PURE__ */ jsx("circle", { cx: "3.082", cy: "13.792", r: "2.465" }),
48
+ /* @__PURE__ */ jsx("circle", { cx: "24.501", cy: "13.791", r: "1.232" }),
49
+ /* @__PURE__ */ jsx("path", { d: "M4.694,19.84c-0.843,0.843-0.843,2.207,0,3.05c0.842,0.843,2.208,0.843,3.05,0c0.843-0.843,0.843-2.207,0-3.05 C6.902,18.996,5.537,18.988,4.694,19.84z" }),
50
+ /* @__PURE__ */ jsx("circle", { cx: "21.364", cy: "6.218", r: "0.924" })
51
+ ] }) })
52
+ }
53
+ );
54
+ }
55
+ function Auth0LogoIcon(props) {
56
+ return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
57
+ /* @__PURE__ */ jsx("title", {}),
58
+ /* @__PURE__ */ jsx(
59
+ "path",
60
+ {
61
+ d: "M21.98 7.448L19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z",
62
+ fill: "currentColor"
63
+ }
64
+ )
65
+ ] });
66
+ }
67
+ function XLogoIcon(props) {
68
+ return /* @__PURE__ */ jsx(
69
+ "svg",
70
+ {
71
+ xmlns: "http://www.w3.org/2000/svg",
72
+ version: "1.1",
73
+ id: "Layer_1",
74
+ width: "24px",
75
+ height: "24px",
76
+ viewBox: "0 0 24 24",
77
+ ...props,
78
+ children: /* @__PURE__ */ jsx(
79
+ "path",
80
+ {
81
+ d: "M14.095479,10.316482L22.286354,1h-1.940718l-7.115352,8.087682L7.551414,1H1l8.589488,12.231093L1,23h1.940717 l7.509372-8.542861L16.448587,23H23L14.095479,10.316482z M11.436522,13.338465l-0.871624-1.218704l-6.924311-9.68815h2.981339 l5.58978,7.82155l0.867949,1.218704l7.26506,10.166271h-2.981339L11.436522,13.338465z",
82
+ fill: "currentColor"
83
+ }
84
+ )
85
+ }
86
+ );
87
+ }
88
+
89
+ export { Auth0LogoIcon, GoogleLogoIcon, LoadingIcon, XLogoIcon };
@@ -0,0 +1,100 @@
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+ var reactIcons = require('@radix-ui/react-icons');
5
+
6
+ // src/icons/google-logo.tsx
7
+ function GoogleLogoIcon(props) {
8
+ return /* @__PURE__ */ jsxRuntime.jsxs(
9
+ "svg",
10
+ {
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ viewBox: "0 0 24 24",
13
+ strokeWidth: "2",
14
+ stroke: "currentColor",
15
+ fill: "none",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
21
+ /* @__PURE__ */ jsxRuntime.jsx(
22
+ "path",
23
+ {
24
+ d: "M12 2a9.96 9.96 0 0 1 6.29 2.226a1 1 0 0 1 .04 1.52l-1.51 1.362a1 1 0 0 1 -1.265 .06a6 6 0 1 0 2.103 6.836l.001 -.004h-3.66a1 1 0 0 1 -.992 -.883l-.007 -.117v-2a1 1 0 0 1 1 -1h6.945a1 1 0 0 1 .994 .89c.04 .367 .061 .737 .061 1.11c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10z",
25
+ strokeWidth: "0",
26
+ fill: "currentColor"
27
+ }
28
+ )
29
+ ]
30
+ }
31
+ );
32
+ }
33
+ function LoadingIcon(props) {
34
+ return /* @__PURE__ */ jsxRuntime.jsx(
35
+ "svg",
36
+ {
37
+ xmlns: "http://www.w3.org/2000/svg",
38
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
39
+ fill: "currentColor",
40
+ version: "1.1",
41
+ viewBox: "0 0 26.349 26.35",
42
+ xmlSpace: "preserve",
43
+ ...props,
44
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", { children: /* @__PURE__ */ jsxRuntime.jsxs("g", { children: [
45
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "13.792", cy: "3.082", r: "3.082" }),
46
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "13.792", cy: "24.501", r: "1.849" }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6.219", cy: "6.218", r: "2.774" }),
48
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "21.365", cy: "21.363", r: "1.541" }),
49
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "3.082", cy: "13.792", r: "2.465" }),
50
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "24.501", cy: "13.791", r: "1.232" }),
51
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.694,19.84c-0.843,0.843-0.843,2.207,0,3.05c0.842,0.843,2.208,0.843,3.05,0c0.843-0.843,0.843-2.207,0-3.05 C6.902,18.996,5.537,18.988,4.694,19.84z" }),
52
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "21.364", cy: "6.218", r: "0.924" })
53
+ ] }) })
54
+ }
55
+ );
56
+ }
57
+ function Auth0LogoIcon(props) {
58
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
59
+ /* @__PURE__ */ jsxRuntime.jsx("title", {}),
60
+ /* @__PURE__ */ jsxRuntime.jsx(
61
+ "path",
62
+ {
63
+ d: "M21.98 7.448L19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z",
64
+ fill: "currentColor"
65
+ }
66
+ )
67
+ ] });
68
+ }
69
+ function XLogoIcon(props) {
70
+ return /* @__PURE__ */ jsxRuntime.jsx(
71
+ "svg",
72
+ {
73
+ xmlns: "http://www.w3.org/2000/svg",
74
+ version: "1.1",
75
+ id: "Layer_1",
76
+ width: "24px",
77
+ height: "24px",
78
+ viewBox: "0 0 24 24",
79
+ ...props,
80
+ children: /* @__PURE__ */ jsxRuntime.jsx(
81
+ "path",
82
+ {
83
+ d: "M14.095479,10.316482L22.286354,1h-1.940718l-7.115352,8.087682L7.551414,1H1l8.589488,12.231093L1,23h1.940717 l7.509372-8.542861L16.448587,23H23L14.095479,10.316482z M11.436522,13.338465l-0.871624-1.218704l-6.924311-9.68815h2.981339 l5.58978,7.82155l0.867949,1.218704l7.26506,10.166271h-2.981339L11.436522,13.338465z",
84
+ fill: "currentColor"
85
+ }
86
+ )
87
+ }
88
+ );
89
+ }
90
+
91
+ exports.Auth0LogoIcon = Auth0LogoIcon;
92
+ exports.GoogleLogoIcon = GoogleLogoIcon;
93
+ exports.LoadingIcon = LoadingIcon;
94
+ exports.XLogoIcon = XLogoIcon;
95
+ Object.keys(reactIcons).forEach(function (k) {
96
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
97
+ enumerable: true,
98
+ get: function () { return reactIcons[k]; }
99
+ });
100
+ });