react-native-exp-fig 2.0.1 → 2.0.2

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 (49) hide show
  1. package/lib/commonjs/components/box/index.js +4 -4
  2. package/lib/commonjs/components/card-loading/index.js +26 -24
  3. package/lib/commonjs/components/card-loading/index.js.map +1 -1
  4. package/lib/commonjs/components/header-profile/index.js +69 -63
  5. package/lib/commonjs/components/header-profile/index.js.map +1 -1
  6. package/lib/commonjs/components/history-details/index.js +4 -4
  7. package/lib/commonjs/components/user-profile/index.js +9 -10
  8. package/lib/commonjs/components/user-profile/index.js.map +1 -1
  9. package/lib/commonjs/index.js +3 -3
  10. package/lib/commonjs/index.js.map +1 -1
  11. package/lib/commonjs/stories/header-profile/header-profile.stories.js +7 -17
  12. package/lib/commonjs/stories/header-profile/header-profile.stories.js.map +1 -1
  13. package/lib/commonjs/styles/theme/theme.js +5 -5
  14. package/lib/commonjs/utils/status-color/return-color.js +2 -2
  15. package/lib/commonjs/utils/status-color/return-color.js.map +1 -1
  16. package/lib/module/components/box/index.js +4 -4
  17. package/lib/module/components/card-loading/index.js +27 -25
  18. package/lib/module/components/card-loading/index.js.map +1 -1
  19. package/lib/module/components/header-profile/index.js +68 -62
  20. package/lib/module/components/header-profile/index.js.map +1 -1
  21. package/lib/module/components/history-details/index.js +4 -4
  22. package/lib/module/components/user-profile/index.js +9 -10
  23. package/lib/module/components/user-profile/index.js.map +1 -1
  24. package/lib/module/index.js +3 -3
  25. package/lib/module/index.js.map +1 -1
  26. package/lib/module/stories/header-profile/header-profile.stories.js +5 -16
  27. package/lib/module/stories/header-profile/header-profile.stories.js.map +1 -1
  28. package/lib/module/styles/theme/theme.js +5 -5
  29. package/lib/module/utils/status-color/return-color.js +2 -2
  30. package/lib/module/utils/status-color/return-color.js.map +1 -1
  31. package/lib/typescript/src/components/card-loading/index.d.ts.map +1 -1
  32. package/lib/typescript/src/components/header-profile/index.d.ts +66 -5
  33. package/lib/typescript/src/components/header-profile/index.d.ts.map +1 -1
  34. package/lib/typescript/src/components/user-profile/index.d.ts.map +1 -1
  35. package/lib/typescript/src/index.d.ts +1 -1
  36. package/lib/typescript/src/index.d.ts.map +1 -1
  37. package/lib/typescript/src/stories/header-profile/header-profile.stories.d.ts +1 -1
  38. package/lib/typescript/src/stories/header-profile/header-profile.stories.d.ts.map +1 -1
  39. package/package.json +1 -1
  40. package/src/components/box/index.tsx +49 -49
  41. package/src/components/card-loading/index.tsx +294 -290
  42. package/src/components/header-profile/index.tsx +148 -132
  43. package/src/components/header-profile/interface.d.ts +145 -57
  44. package/src/components/history-details/index.tsx +99 -99
  45. package/src/components/user-profile/index.tsx +206 -204
  46. package/src/index.ts +48 -48
  47. package/src/stories/header-profile/header-profile.stories.tsx +92 -103
  48. package/src/styles/theme/theme.ts +193 -193
  49. package/src/utils/status-color/return-color.ts +34 -34
package/src/index.ts CHANGED
@@ -1,48 +1,48 @@
1
- /**
2
- * EXPORTS
3
- */
4
-
5
- // Components
6
- export { Box } from "./components/box";
7
- export { Button } from "./components/button";
8
- export { StepIndicator } from "./components/step-indicator";
9
- export { Typography } from "./components/typography";
10
- export { Input } from "./components/input";
11
- export { CapturePhoto } from "./components/capture-photo";
12
- export { CardHours } from "./components/card-hours";
13
- export { SelectOption } from "./components/selects/select-option";
14
- export { Header } from "./components/header-profile";
15
- export { ScheduledJourneyIndicators } from "./components/scheduled-journey-indicators";
16
- export { CardScheduledJourney } from "./components/card-scheduled-journey";
17
- export { UserProfile } from "./components/user-profile";
18
- export { MenuItem } from "./components/menu-item";
19
- export { CardLoading } from "./components/card-loading";
20
- export { CardWorkSession } from "./components/card-work-session";
21
- export { LoadingProgress } from "./components/loading-progress";
22
- export { NoData } from "./components/no-data";
23
- export { FilterJourney } from "./components/filter-journey";
24
- export { Coil } from "./components/coil";
25
- export { FilterDateSelector } from "./components/filter-date-selector";
26
- export { CardHistory } from "./components/card-history";
27
- export { NotificationLoading } from "./components/notification-loading";
28
- export { CheckBox } from "./components/check-box";
29
- export { ImageCaptureWithRemove } from "./components/image-capture-with-remove";
30
- export { LoadingDetails } from "./components/loading-details";
31
- export { AvatarProfile } from "./components/avatar-profile";
32
- export { HistoryDetails } from "./components/history-details";
33
- export { ActivitiesDaily } from "./components/activities-daily";
34
- export { ActivitiesProgress } from "./components/activities-progress";
35
- export { ProfileMenuOption } from "./components/profile-menu-option";
36
- export { ModalActivities } from "./components/modal-activities";
37
- export { default as CardReport } from "./components/card-report";
38
- export { default as Loading } from "./components/loading";
39
- export { default as NotificationCard } from "./components/notification-card";
40
- export { default as LoadMoreDataFlatList } from "./components/load-more-data";
41
- export { default as AppList } from "./components/app-list";
42
-
43
- // Utilities
44
- export { multiply } from "./utils/mutiply";
45
- export { formatDate, getLastSevenDays, formHoursMinute } from "./utils/format-data";
46
-
47
- // Styles
48
- export { theme } from "./styles/theme/theme";
1
+ /**
2
+ * EXPORTS
3
+ */
4
+
5
+ // Components
6
+ export { Box } from "./components/box";
7
+ export { Button } from "./components/button";
8
+ export { StepIndicator } from "./components/step-indicator";
9
+ export { Typography } from "./components/typography";
10
+ export { Input } from "./components/input";
11
+ export { CapturePhoto } from "./components/capture-photo";
12
+ export { CardHours } from "./components/card-hours";
13
+ export { SelectOption } from "./components/selects/select-option";
14
+ export { default as HeaderNavigation } from "./components/header-profile";
15
+ export { ScheduledJourneyIndicators } from "./components/scheduled-journey-indicators";
16
+ export { CardScheduledJourney } from "./components/card-scheduled-journey";
17
+ export { UserProfile } from "./components/user-profile";
18
+ export { MenuItem } from "./components/menu-item";
19
+ export { CardLoading } from "./components/card-loading";
20
+ export { CardWorkSession } from "./components/card-work-session";
21
+ export { LoadingProgress } from "./components/loading-progress";
22
+ export { NoData } from "./components/no-data";
23
+ export { FilterJourney } from "./components/filter-journey";
24
+ export { Coil } from "./components/coil";
25
+ export { FilterDateSelector } from "./components/filter-date-selector";
26
+ export { CardHistory } from "./components/card-history";
27
+ export { NotificationLoading } from "./components/notification-loading";
28
+ export { CheckBox } from "./components/check-box";
29
+ export { ImageCaptureWithRemove } from "./components/image-capture-with-remove";
30
+ export { LoadingDetails } from "./components/loading-details";
31
+ export { AvatarProfile } from "./components/avatar-profile";
32
+ export { HistoryDetails } from "./components/history-details";
33
+ export { ActivitiesDaily } from "./components/activities-daily";
34
+ export { ActivitiesProgress } from "./components/activities-progress";
35
+ export { ProfileMenuOption } from "./components/profile-menu-option";
36
+ export { ModalActivities } from "./components/modal-activities";
37
+ export { default as CardReport } from "./components/card-report";
38
+ export { default as Loading } from "./components/loading";
39
+ export { default as NotificationCard } from "./components/notification-card";
40
+ export { default as LoadMoreDataFlatList } from "./components/load-more-data";
41
+ export { default as AppList } from "./components/app-list";
42
+
43
+ // Utilities
44
+ export { multiply } from "./utils/mutiply";
45
+ export { formatDate, getLastSevenDays, formHoursMinute } from "./utils/format-data";
46
+
47
+ // Styles
48
+ export { theme } from "./styles/theme/theme";
@@ -1,103 +1,92 @@
1
- import type { StoryObj, Meta } from "@storybook/react";
2
- import { Header } from "../../components/header-profile";
3
-
4
- const meta: Meta<typeof Header> = {
5
- title: "componente/Header",
6
- component: Header,
7
- args: {
8
- testID: "header",
9
- arrow: false,
10
- title: "aqui",
11
- handleNavigation: () => {},
12
- permission: false,
13
- bluetoothIsConnected: false,
14
- isInternetReachable: true,
15
- },
16
- parameters: {
17
- notes: `
18
- # Header
19
-
20
- Este é um componente de Card de horas.
21
- Você usa assim:
22
- \`\`\`tsx
23
- <Header
24
-
25
- />
26
- \`\`\`
27
- `,
28
- },
29
- };
30
-
31
- export default meta;
32
-
33
- type Story = StoryObj<typeof meta>;
34
-
35
- export const HeaderLogin: Story = {
36
- name: "header-login",
37
- args: {
38
- testID: "header",
39
- arrow: false,
40
- title: "Login",
41
- handleNavigation: () => {},
42
- permission: false,
43
- bluetoothIsConnected: false,
44
- isInternetReachable: true,
45
- isBluetooth: false,
46
- },
47
- };
48
- export const HeaderArrow: Story = {
49
- name: "header-arrow",
50
- args: {
51
- testID: "header",
52
- arrow: true,
53
- title: "SINCRONIZAR ATIVIDADES",
54
- handleNavigation: () => {},
55
- permission: false,
56
- bluetoothIsConnected: false,
57
- isInternetReachable: false,
58
- isBluetooth: true,
59
- },
60
- };
61
-
62
- export const HeaderList: Story = {
63
- name: "header-list",
64
- args: {
65
- testID: "header",
66
- arrow: true,
67
- title: "Controle de Jornada",
68
- handleNavigation: () => {},
69
- permission: false,
70
- bluetoothIsConnected: true,
71
- isInternetReachable: true,
72
- isBluetooth: true,
73
- },
74
- };
75
-
76
- export const HeaderPermission: Story = {
77
- name: "header-permission",
78
- args: {
79
- testID: "header",
80
- arrow: true,
81
- title: "Permission",
82
- handleNavigation: () => {},
83
- permission: true,
84
- bluetoothIsConnected: true,
85
- isInternetReachable: true,
86
- isBluetooth: false,
87
- },
88
- };
89
-
90
- export const HeaderBackground: Story = {
91
- name: "header-background",
92
- args: {
93
- testID: "header",
94
- arrow: true,
95
- title: "texto grande e background diferente",
96
- handleNavigation: () => {},
97
- permission: false,
98
- bluetoothIsConnected: true,
99
- isInternetReachable: true,
100
- isBluetooth: false,
101
- color: { colorText: "white" },
102
- },
103
- };
1
+ import type { StoryObj, Meta } from "@storybook/react";
2
+ import Header from "../../components/header-profile";
3
+
4
+ const meta: Meta<typeof Header> = {
5
+ title: "componente/Header",
6
+ component: Header,
7
+ args: {
8
+ testID: "header",
9
+ arrow: false,
10
+ title: "aqui",
11
+ handleNavigation: () => { },
12
+ bluetoothIsConnected: false,
13
+ isInternetReachable: true,
14
+ },
15
+ parameters: {
16
+ notes: `
17
+ # Header
18
+
19
+ Este é um componente de Card de horas.
20
+ Você usa assim:
21
+ \`\`\`tsx
22
+ <Header
23
+
24
+ />
25
+ \`\`\`
26
+ `,
27
+ },
28
+ };
29
+
30
+ export default meta;
31
+
32
+ type Story = StoryObj<typeof meta>;
33
+
34
+ export const HeaderLogin: Story = {
35
+ name: "header-login",
36
+ args: {
37
+ testID: "header",
38
+ arrow: false,
39
+ title: "Login",
40
+ handleNavigation: () => { },
41
+ bluetoothIsConnected: false,
42
+ isInternetReachable: true,
43
+ },
44
+ };
45
+ export const HeaderArrow: Story = {
46
+ name: "header-arrow",
47
+ args: {
48
+ testID: "header",
49
+ arrow: true,
50
+ title: "SINCRONIZAR ATIVIDADES",
51
+ handleNavigation: () => { },
52
+ bluetoothIsConnected: false,
53
+ isInternetReachable: false,
54
+ },
55
+ };
56
+
57
+ export const HeaderList: Story = {
58
+ name: "header-list",
59
+ args: {
60
+ testID: "header",
61
+ arrow: true,
62
+ title: "Controle de Jornada",
63
+ handleNavigation: () => { },
64
+ bluetoothIsConnected: true,
65
+ isInternetReachable: true,
66
+ },
67
+ };
68
+
69
+ export const HeaderPermission: Story = {
70
+ name: "header-permission",
71
+ args: {
72
+ testID: "header",
73
+ arrow: true,
74
+ title: "Permission",
75
+ handleNavigation: () => { },
76
+ bluetoothIsConnected: true,
77
+ isInternetReachable: true,
78
+ },
79
+ };
80
+
81
+ export const HeaderBackground: Story = {
82
+ name: "header-background",
83
+ args: {
84
+ testID: "header",
85
+ arrow: true,
86
+ title: "texto grande e background diferente",
87
+ handleNavigation: () => { },
88
+ bluetoothIsConnected: true,
89
+ isInternetReachable: true,
90
+ color: { colorText: "white" },
91
+ },
92
+ };
@@ -1,193 +1,193 @@
1
- /**
2
- * IMPORTS
3
- */
4
-
5
- const colors = {
6
- neutral: {
7
- 25: "#FFFFFF",
8
- 50: "#E7EEFF",
9
- 75: "#E5E1F9",
10
- 200: "#C6C6C6",
11
- 300: "#F3F3F3",
12
- 400: "#F4F5F6",
13
- 500: "#FFF1DC",
14
- },
15
- black: {
16
- 10: "#000000",
17
- 25: "#1E1E1E",
18
- 100: "#393939",
19
- 180: "#35302B",
20
- },
21
- blue: {
22
- 25: "#1E1E1E",
23
- 50: "#1EA7fD",
24
- 100: "#051C3B",
25
- 150: "#2E41F2",
26
- 350: "#357FD6",
27
- 375: "#056CF2",
28
- 525: "#2D3748",
29
- 500: "#050022",
30
- 400: "#051C3B",
31
- 800: "#87CEFA",
32
- },
33
- red: {
34
- 400: "#D23A1A",
35
- 500: "#C54239",
36
- 800: "#E72626",
37
- 900: "#9F0000",
38
- },
39
- gray: {
40
- 300: "#D9D9D9",
41
- 350: "#CDCDCD",
42
- 400: "#C6C6C6",
43
- 500: "#1c1c1e",
44
- 600: "#5E5E5E",
45
- 700: "#727272",
46
- 800: "#837676",
47
- 850: "#868686",
48
- 875: "#949494",
49
- 900: "#9B9B9B",
50
- 925: "#957c5f",
51
- 950: "#94a3b8",
52
- },
53
- green: {
54
- 100: "#D4EDDA",
55
- 200: "#25BA76",
56
- 250: "#20AD48",
57
- 400: "#49C63E",
58
- 500: "#50C58F",
59
- },
60
- orange: {
61
- 500: "#FC5701",
62
- 450: "#FC6C2D",
63
- 150: "#FFA41C",
64
- },
65
- yellow: {
66
- 120: "#FFE8C2", // laranja claro - levando em consideração opacidade de 20
67
- 100: "#DFAE00",
68
- 50: "#F0CA4B",
69
- 75: "#F59E0B",
70
- },
71
- };
72
-
73
- const fonts = {
74
- inter_thin_100: "Inter-Thin",
75
- inter_extra_light_200: "Inter-ExtraLight",
76
- inter_light_300: "Inter-Light",
77
- inter_regular_400: "Inter-Regular",
78
- inter_medium_500: "Inter-Medium",
79
- inter_semi_bold_600: "Inter-SemiBold",
80
- inter_bold_700: "Inter-Bold",
81
- inter_extra_bold_800: "Inter-ExtraBold",
82
- inter_bold: "Inter-Bold",
83
- };
84
-
85
- const fontSizes = {
86
- "2xs": 10,
87
- xs: 12,
88
- sm: 14,
89
- md: 16,
90
- lg: 18,
91
- xl: 20,
92
- "2xl": 24,
93
- "3xl": 32,
94
- "4xl": 38,
95
- "5xl": 50,
96
- "6xl": 60,
97
- "7xl": 72,
98
- "8xl": 96,
99
- "9xl": 128,
100
- };
101
-
102
- const margins = {
103
- fn: 2,
104
- "1xs": 6,
105
- "2xs": 10,
106
- xs: 12,
107
- sm: 14,
108
- md: 16,
109
- lg: 18,
110
- xl: 20,
111
- "2xl": 24,
112
- "3xl": 30,
113
- "4xl": 36,
114
- "5xl": 48,
115
- "6xl": 60,
116
- "7xl": 72,
117
- "8xl": 96,
118
- "9xl": 128,
119
- };
120
-
121
- const paddings = {
122
- "3xs": 6,
123
- "2xs": 10,
124
- xs: 12,
125
- sm: 14,
126
- md: 16,
127
- lg: 18,
128
- xl: 20,
129
- "2xl": 24,
130
- "3xl": 30,
131
- "4xl": 36,
132
- "5xl": 48,
133
- "6xl": 60,
134
- "7xl": 72,
135
- "8xl": 96,
136
- "9xl": 128,
137
- };
138
-
139
- const borderWidths = {
140
- thin: 1,
141
- thin_medium: 2,
142
- thin_bold: 6,
143
- thick: 4,
144
- thick_medium: 8,
145
- thick_bold: 12,
146
- thick_large: 16,
147
- hairline: 999,
148
- "2xl": 24,
149
- };
150
-
151
- const shadows = {
152
- z1: "0px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 1px rgba(0, 0, 0, 0.15)",
153
- z2: "0px 1px 2px rgba(0, 0, 0, 0.3)",
154
- };
155
-
156
- const letterSpacing = {
157
- o_16: 0.16,
158
- regular: 0.5,
159
- medium: 0.75,
160
- strong: 1,
161
- };
162
-
163
- const lineHeight = {
164
- "2xs": 10,
165
- xs: 12,
166
- sm: 14,
167
- md: 16,
168
- lg: 18,
169
- xl: 20,
170
- "2xl": 24,
171
- "3xl": 30,
172
- "4xl": 36,
173
- "5xl": 48,
174
- "6xl": 60,
175
- "7xl": 72,
176
- "8xl": 96,
177
- "9xl": 128,
178
- };
179
-
180
- /**
181
- * EXPORTSS
182
- */
183
- export const theme = {
184
- borderWidths,
185
- colors,
186
- fonts,
187
- fontSizes,
188
- margins,
189
- shadows,
190
- paddings,
191
- letterSpacing,
192
- lineHeight,
193
- };
1
+ /**
2
+ * IMPORTS
3
+ */
4
+
5
+ const colors = {
6
+ neutral: {
7
+ 25: "#FFFFFF",
8
+ 50: "#E7EEFF",
9
+ 75: "#E5E1F9",
10
+ 200: "#C6C6C6",
11
+ 300: "#F3F3F3",
12
+ 400: "#F4F5F6",
13
+ 500: "#FFF1DC",
14
+ },
15
+ black: {
16
+ 10: "#000000",
17
+ 25: "#1E1E1E",
18
+ 100: "#393939",
19
+ 180: "#35302B",
20
+ },
21
+ blue: {
22
+ 25: "#1E1E1E",
23
+ 50: "#1EA7fD",
24
+ 100: "#051C3B",
25
+ 150: "#2E41F2",
26
+ 350: "#357FD6",
27
+ 375: "#056CF2",
28
+ 525: "#2D3748",
29
+ 500: "#050022",
30
+ 400: "#2D3748",
31
+ 800: "#87CEFA",
32
+ },
33
+ red: {
34
+ 400: "#D23A1A",
35
+ 500: "#C54239",
36
+ 800: "#E72626",
37
+ 900: "#9F0000",
38
+ },
39
+ gray: {
40
+ 300: "#D9D9D9",
41
+ 350: "#CDCDCD",
42
+ 400: "#C6C6C6",
43
+ 500: "#1c1c1e",
44
+ 600: "#5E5E5E",
45
+ 700: "#727272",
46
+ 800: "#837676",
47
+ 850: "#868686",
48
+ 875: "#949494",
49
+ 900: "#9B9B9B",
50
+ 925: "#957c5f",
51
+ 950: "#94a3b8",
52
+ },
53
+ green: {
54
+ 100: "#D4EDDA",
55
+ 200: "#25BA76",
56
+ 250: "#20AD48",
57
+ 400: "#49C63E",
58
+ 500: "#50C58F",
59
+ },
60
+ orange: {
61
+ 500: "#FC5701",
62
+ 450: "#FC6C2D",
63
+ 150: "#FFA41C",
64
+ },
65
+ yellow: {
66
+ 120: "#FFE8C2", // laranja claro - levando em consideração opacidade de 20
67
+ 100: "#DFAE00",
68
+ 50: "#F0CA4B",
69
+ 75: "#F59E0B",
70
+ },
71
+ };
72
+
73
+ const fonts = {
74
+ inter_thin_100: "Inter-Thin",
75
+ inter_extra_light_200: "Inter-ExtraLight",
76
+ inter_light_300: "Inter-Light",
77
+ inter_regular_400: "Inter-Regular",
78
+ inter_medium_500: "Inter-Medium",
79
+ inter_semi_bold_600: "Inter-SemiBold",
80
+ inter_bold_700: "Inter-Bold",
81
+ inter_extra_bold_800: "Inter-ExtraBold",
82
+ inter_bold: "Inter-Bold",
83
+ };
84
+
85
+ const fontSizes = {
86
+ "2xs": 10,
87
+ xs: 12,
88
+ sm: 14,
89
+ md: 16,
90
+ lg: 18,
91
+ xl: 20,
92
+ "2xl": 24,
93
+ "3xl": 32,
94
+ "4xl": 38,
95
+ "5xl": 50,
96
+ "6xl": 60,
97
+ "7xl": 72,
98
+ "8xl": 96,
99
+ "9xl": 128,
100
+ };
101
+
102
+ const margins = {
103
+ fn: 2,
104
+ "1xs": 6,
105
+ "2xs": 10,
106
+ xs: 12,
107
+ sm: 14,
108
+ md: 16,
109
+ lg: 18,
110
+ xl: 20,
111
+ "2xl": 24,
112
+ "3xl": 30,
113
+ "4xl": 36,
114
+ "5xl": 48,
115
+ "6xl": 60,
116
+ "7xl": 72,
117
+ "8xl": 96,
118
+ "9xl": 128,
119
+ };
120
+
121
+ const paddings = {
122
+ "3xs": 6,
123
+ "2xs": 10,
124
+ xs: 12,
125
+ sm: 14,
126
+ md: 16,
127
+ lg: 18,
128
+ xl: 20,
129
+ "2xl": 24,
130
+ "3xl": 30,
131
+ "4xl": 36,
132
+ "5xl": 48,
133
+ "6xl": 60,
134
+ "7xl": 72,
135
+ "8xl": 96,
136
+ "9xl": 128,
137
+ };
138
+
139
+ const borderWidths = {
140
+ thin: 1,
141
+ thin_medium: 2,
142
+ thin_bold: 6,
143
+ thick: 4,
144
+ thick_medium: 8,
145
+ thick_bold: 12,
146
+ thick_large: 16,
147
+ hairline: 999,
148
+ "2xl": 24,
149
+ };
150
+
151
+ const shadows = {
152
+ z1: "0px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 1px rgba(0, 0, 0, 0.15)",
153
+ z2: "0px 1px 2px rgba(0, 0, 0, 0.3)",
154
+ };
155
+
156
+ const letterSpacing = {
157
+ o_16: 0.16,
158
+ regular: 0.5,
159
+ medium: 0.75,
160
+ strong: 1,
161
+ };
162
+
163
+ const lineHeight = {
164
+ "2xs": 10,
165
+ xs: 12,
166
+ sm: 14,
167
+ md: 16,
168
+ lg: 18,
169
+ xl: 20,
170
+ "2xl": 24,
171
+ "3xl": 30,
172
+ "4xl": 36,
173
+ "5xl": 48,
174
+ "6xl": 60,
175
+ "7xl": 72,
176
+ "8xl": 96,
177
+ "9xl": 128,
178
+ };
179
+
180
+ /**
181
+ * EXPORTSS
182
+ */
183
+ export const theme = {
184
+ borderWidths,
185
+ colors,
186
+ fonts,
187
+ fontSizes,
188
+ margins,
189
+ shadows,
190
+ paddings,
191
+ letterSpacing,
192
+ lineHeight,
193
+ };