tio-design-make-experiments 0.0.1

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 (108) hide show
  1. package/ATTRIBUTIONS.md +3 -0
  2. package/README.md +11 -0
  3. package/guidelines/Guidelines.md +61 -0
  4. package/index.html +15 -0
  5. package/package.json +91 -0
  6. package/postcss.config.mjs +15 -0
  7. package/src/app/App.tsx +6 -0
  8. package/src/app/components/design-system/Buttons.tsx +623 -0
  9. package/src/app/components/design-system/Cards.tsx +123 -0
  10. package/src/app/components/design-system/Charts.tsx +135 -0
  11. package/src/app/components/design-system/ColorPalette.tsx +86 -0
  12. package/src/app/components/design-system/CopyButton.tsx +102 -0
  13. package/src/app/components/design-system/Forms.tsx +409 -0
  14. package/src/app/components/design-system/Icons.tsx +140 -0
  15. package/src/app/components/design-system/ListItems.tsx +234 -0
  16. package/src/app/components/design-system/Navigation.tsx +344 -0
  17. package/src/app/components/design-system/Patterns.tsx +235 -0
  18. package/src/app/components/design-system/PopoverMenu.tsx +81 -0
  19. package/src/app/components/design-system/SectionHeader.tsx +22 -0
  20. package/src/app/components/design-system/Spacing.tsx +109 -0
  21. package/src/app/components/design-system/StatusIndicators.tsx +194 -0
  22. package/src/app/components/design-system/Typography.tsx +88 -0
  23. package/src/app/components/figma/ImageWithFallback.tsx +27 -0
  24. package/src/app/components/ui/accordion.tsx +66 -0
  25. package/src/app/components/ui/alert-dialog.tsx +157 -0
  26. package/src/app/components/ui/alert.tsx +66 -0
  27. package/src/app/components/ui/aspect-ratio.tsx +11 -0
  28. package/src/app/components/ui/avatar.tsx +53 -0
  29. package/src/app/components/ui/badge.tsx +46 -0
  30. package/src/app/components/ui/breadcrumb.tsx +109 -0
  31. package/src/app/components/ui/button.tsx +58 -0
  32. package/src/app/components/ui/calendar.tsx +75 -0
  33. package/src/app/components/ui/card.tsx +92 -0
  34. package/src/app/components/ui/carousel.tsx +241 -0
  35. package/src/app/components/ui/chart.tsx +353 -0
  36. package/src/app/components/ui/checkbox.tsx +32 -0
  37. package/src/app/components/ui/collapsible.tsx +33 -0
  38. package/src/app/components/ui/command.tsx +177 -0
  39. package/src/app/components/ui/context-menu.tsx +252 -0
  40. package/src/app/components/ui/dialog.tsx +135 -0
  41. package/src/app/components/ui/drawer.tsx +132 -0
  42. package/src/app/components/ui/dropdown-menu.tsx +257 -0
  43. package/src/app/components/ui/form.tsx +168 -0
  44. package/src/app/components/ui/hover-card.tsx +44 -0
  45. package/src/app/components/ui/input-otp.tsx +77 -0
  46. package/src/app/components/ui/input.tsx +21 -0
  47. package/src/app/components/ui/label.tsx +24 -0
  48. package/src/app/components/ui/menubar.tsx +276 -0
  49. package/src/app/components/ui/navigation-menu.tsx +168 -0
  50. package/src/app/components/ui/pagination.tsx +127 -0
  51. package/src/app/components/ui/popover.tsx +48 -0
  52. package/src/app/components/ui/progress.tsx +31 -0
  53. package/src/app/components/ui/radio-group.tsx +45 -0
  54. package/src/app/components/ui/resizable.tsx +56 -0
  55. package/src/app/components/ui/scroll-area.tsx +58 -0
  56. package/src/app/components/ui/select.tsx +189 -0
  57. package/src/app/components/ui/separator.tsx +28 -0
  58. package/src/app/components/ui/sheet.tsx +139 -0
  59. package/src/app/components/ui/sidebar.tsx +726 -0
  60. package/src/app/components/ui/skeleton.tsx +13 -0
  61. package/src/app/components/ui/slider.tsx +63 -0
  62. package/src/app/components/ui/sonner.tsx +25 -0
  63. package/src/app/components/ui/switch.tsx +31 -0
  64. package/src/app/components/ui/table.tsx +116 -0
  65. package/src/app/components/ui/tabs.tsx +66 -0
  66. package/src/app/components/ui/textarea.tsx +18 -0
  67. package/src/app/components/ui/toggle-group.tsx +73 -0
  68. package/src/app/components/ui/toggle.tsx +47 -0
  69. package/src/app/components/ui/tooltip.tsx +61 -0
  70. package/src/app/components/ui/use-mobile.ts +21 -0
  71. package/src/app/components/ui/utils.ts +6 -0
  72. package/src/app/pages/DesignSystem.tsx +189 -0
  73. package/src/app/pages/Team.tsx +168 -0
  74. package/src/app/routes.tsx +14 -0
  75. package/src/assets/6276cd19433d265f363bddc7f52f4937da9b1dd4.png +0 -0
  76. package/src/assets/9d7a018c9a6938d439d9059f82753d232ce63804.png +0 -0
  77. package/src/imports/Buttons-3-409.tsx +46 -0
  78. package/src/imports/Buttons-3-962.tsx +155 -0
  79. package/src/imports/ButtonsAndActions.tsx +139 -0
  80. package/src/imports/Dashboard.tsx +1914 -0
  81. package/src/imports/DesignSystem.tsx +6008 -0
  82. package/src/imports/Forms.tsx +1088 -0
  83. package/src/imports/Navigation-17-3259.tsx +564 -0
  84. package/src/imports/Navigation-18-957.tsx +873 -0
  85. package/src/imports/Wireframe.tsx +112 -0
  86. package/src/imports/svg-1ifosis1tx.ts +3 -0
  87. package/src/imports/svg-5spfd.tsx +1 -0
  88. package/src/imports/svg-6180by7m37.ts +3 -0
  89. package/src/imports/svg-guy0p.tsx +1 -0
  90. package/src/imports/svg-hm2n0.tsx +2 -0
  91. package/src/imports/svg-j8o95ccqq7.ts +26 -0
  92. package/src/imports/svg-liuy2nykz3.ts +10 -0
  93. package/src/imports/svg-pp9c3.tsx +1 -0
  94. package/src/imports/svg-pr0k9194w9.ts +33 -0
  95. package/src/imports/svg-umftvfphsk.ts +48 -0
  96. package/src/imports/svg-vbi95q76mb.ts +23 -0
  97. package/src/imports/svg-vxjpl.tsx +1 -0
  98. package/src/imports/svg-wl30wxxv53.ts +3 -0
  99. package/src/main.tsx +7 -0
  100. package/src/styles/fonts.css +1 -0
  101. package/src/styles/forms.css +181 -0
  102. package/src/styles/header.css +48 -0
  103. package/src/styles/index.css +7 -0
  104. package/src/styles/navlinks.css +112 -0
  105. package/src/styles/popover.css +48 -0
  106. package/src/styles/tailwind.css +4 -0
  107. package/src/styles/theme.css +312 -0
  108. package/vite.config.ts +38 -0
@@ -0,0 +1,1914 @@
1
+ import svgPaths from "./svg-pr0k9194w9";
2
+ import imgProfileDropdown from "figma:asset/6276cd19433d265f363bddc7f52f4937da9b1dd4.png";
3
+ import { imgLogoTestinator } from "./svg-guy0p";
4
+
5
+ function SpacerTestinator() {
6
+ return <div className="h-[40px] shrink-0 w-full" data-name="spacer testinator" />;
7
+ }
8
+
9
+ function Heading() {
10
+ return (
11
+ <div className="content-stretch flex gap-[10px] items-end not-italic relative shrink-0 w-full" data-name="HEADING">
12
+ <p className="flex-[1_0_0] font-['Source_Sans_Pro:Light',sans-serif] leading-[22px] min-h-px min-w-px relative text-[18px] text-white uppercase whitespace-pre-wrap">LATEST REPORT</p>
13
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[19px] relative shrink-0 text-[#78eac1] text-[13px]">VIEW REPORT</p>
14
+ </div>
15
+ );
16
+ }
17
+
18
+ function SpacerTestio() {
19
+ return <div className="h-[20px] shrink-0 w-full" data-name="spacer-testio" />;
20
+ }
21
+
22
+ function MaskGroup() {
23
+ return (
24
+ <div className="absolute left-0 size-[180px] top-0" data-name="Mask group">
25
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 180 180">
26
+ <g id="Mask group">
27
+ <mask height="180" id="mask0_31_3525" maskUnits="userSpaceOnUse" style={{ maskType: "alpha" }} width="180" x="0" y="0">
28
+ <path clipRule="evenodd" d={svgPaths.p3f48ef30} fill="var(--fill-0, #262626)" fillRule="evenodd" id="Subtract" />
29
+ </mask>
30
+ <g mask="url(#mask0_31_3525)">
31
+ <rect fill="var(--fill-0, #FF3131)" height="90" id="Rectangle 1" width="90" x="90" />
32
+ <rect fill="var(--fill-0, #F48D21)" height="90" id="Rectangle 2" width="90" x="90" y="90" />
33
+ <rect fill="var(--fill-0, #33BA9E)" height="90" id="Rectangle 3" width="90" y="90" />
34
+ </g>
35
+ </g>
36
+ </svg>
37
+ </div>
38
+ );
39
+ }
40
+
41
+ function DonutChart() {
42
+ return (
43
+ <div className="content-stretch flex flex-col gap-[10px] items-center justify-center relative shrink-0 size-[180px]" data-name="Donut chart">
44
+ <div className="-translate-x-1/2 absolute left-1/2 size-[180px] top-0" data-name="Subtract">
45
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 180 180">
46
+ <path clipRule="evenodd" d={svgPaths.p3f48ef30} fill="var(--fill-0, #262626)" fillRule="evenodd" id="Subtract" />
47
+ </svg>
48
+ </div>
49
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[40px] min-w-full not-italic relative shrink-0 text-[60px] text-center text-white w-[min-content] whitespace-pre-wrap">999</p>
50
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] min-w-full not-italic relative shrink-0 text-[#888] text-[11px] text-center w-[min-content] whitespace-pre-wrap">Total check executions</p>
51
+ <MaskGroup />
52
+ </div>
53
+ );
54
+ }
55
+
56
+ function SpacerTailWind() {
57
+ return (
58
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
59
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
60
+ </div>
61
+ );
62
+ }
63
+
64
+ function LegendDot() {
65
+ return (
66
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
67
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
68
+ <g id="legend dot">
69
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #33BA9E)" id="legend dot_2" r="2.5" />
70
+ </g>
71
+ </svg>
72
+ </div>
73
+ );
74
+ }
75
+
76
+ function LegendItem() {
77
+ return (
78
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
79
+ <LegendDot />
80
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">12 passed</p>
81
+ </div>
82
+ );
83
+ }
84
+
85
+ function LegendDot1() {
86
+ return (
87
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
88
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
89
+ <g id="legend dot">
90
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #FF3131)" id="legend dot_2" r="2.5" />
91
+ </g>
92
+ </svg>
93
+ </div>
94
+ );
95
+ }
96
+
97
+ function LegendItem1() {
98
+ return (
99
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
100
+ <LegendDot1 />
101
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">12 failed</p>
102
+ </div>
103
+ );
104
+ }
105
+
106
+ function LegendDot2() {
107
+ return (
108
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
109
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
110
+ <g id="legend dot">
111
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #F48D21)" id="legend dot_2" r="2.5" />
112
+ </g>
113
+ </svg>
114
+ </div>
115
+ );
116
+ }
117
+
118
+ function LegendItem2() {
119
+ return (
120
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
121
+ <LegendDot2 />
122
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">12 blocked</p>
123
+ </div>
124
+ );
125
+ }
126
+
127
+ function Legend() {
128
+ return (
129
+ <div className="content-stretch flex gap-[10px] items-center justify-center relative shrink-0 w-full" data-name="Legend">
130
+ <LegendItem />
131
+ <LegendItem1 />
132
+ <LegendItem2 />
133
+ </div>
134
+ );
135
+ }
136
+
137
+ function ChartLineHorizontal() {
138
+ return (
139
+ <div className="content-stretch flex flex-col items-center relative shrink-0 w-full" data-name="CHART Line horizontal">
140
+ <DonutChart />
141
+ <SpacerTailWind />
142
+ <Legend />
143
+ </div>
144
+ );
145
+ }
146
+
147
+ function CardDonut() {
148
+ return (
149
+ <div className="bg-[#1d1d1d] content-stretch flex flex-col items-start p-[30px] relative rounded-[15px] self-stretch shrink-0 w-[300px]" data-name="CARD donut">
150
+ <Heading />
151
+ <SpacerTestio />
152
+ <ChartLineHorizontal />
153
+ </div>
154
+ );
155
+ }
156
+
157
+ function SpacerTestio1() {
158
+ return <div className="h-[20px] shrink-0 w-full" data-name="spacer-testio" />;
159
+ }
160
+
161
+ function SpacerTailWind1() {
162
+ return (
163
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
164
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
165
+ </div>
166
+ );
167
+ }
168
+
169
+ function SpacerTailWind2() {
170
+ return (
171
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
172
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
173
+ </div>
174
+ );
175
+ }
176
+
177
+ function SpacerTailWind3() {
178
+ return (
179
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
180
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
181
+ </div>
182
+ );
183
+ }
184
+
185
+ function Col() {
186
+ return (
187
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
188
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">5</p>
189
+ <div className="relative shrink-0 size-[10px]" data-name="node">
190
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
191
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
192
+ </svg>
193
+ </div>
194
+ <SpacerTailWind1 />
195
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">3</p>
196
+ <div className="relative shrink-0 size-[10px]" data-name="node">
197
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
198
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
199
+ </svg>
200
+ </div>
201
+ <SpacerTailWind2 />
202
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">0</p>
203
+ <div className="relative shrink-0 size-[10px]" data-name="node">
204
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
205
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
206
+ </svg>
207
+ </div>
208
+ <SpacerTailWind3 />
209
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
210
+ <p className="mb-0">19-09-2025</p>
211
+ <p>10:00</p>
212
+ </div>
213
+ </div>
214
+ );
215
+ }
216
+
217
+ function SpacerTailWind4() {
218
+ return (
219
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
220
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
221
+ </div>
222
+ );
223
+ }
224
+
225
+ function SpacerTailWind5() {
226
+ return (
227
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
228
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
229
+ </div>
230
+ );
231
+ }
232
+
233
+ function SpacerTailWind6() {
234
+ return (
235
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
236
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
237
+ </div>
238
+ );
239
+ }
240
+
241
+ function Col1() {
242
+ return (
243
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
244
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">7</p>
245
+ <div className="relative shrink-0 size-[10px]" data-name="node">
246
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
247
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
248
+ </svg>
249
+ </div>
250
+ <SpacerTailWind4 />
251
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">4</p>
252
+ <div className="relative shrink-0 size-[10px]" data-name="node">
253
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
254
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
255
+ </svg>
256
+ </div>
257
+ <SpacerTailWind5 />
258
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">2</p>
259
+ <div className="relative shrink-0 size-[10px]" data-name="node">
260
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
261
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
262
+ </svg>
263
+ </div>
264
+ <SpacerTailWind6 />
265
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
266
+ <p className="mb-0">19-09-2025</p>
267
+ <p>10:00</p>
268
+ </div>
269
+ </div>
270
+ );
271
+ }
272
+
273
+ function SpacerTailWind7() {
274
+ return (
275
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
276
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
277
+ </div>
278
+ );
279
+ }
280
+
281
+ function SpacerTailWind8() {
282
+ return (
283
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
284
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
285
+ </div>
286
+ );
287
+ }
288
+
289
+ function SpacerTailWind9() {
290
+ return (
291
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
292
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
293
+ </div>
294
+ );
295
+ }
296
+
297
+ function Col2() {
298
+ return (
299
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
300
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">6</p>
301
+ <div className="relative shrink-0 size-[10px]" data-name="node">
302
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
303
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
304
+ </svg>
305
+ </div>
306
+ <SpacerTailWind7 />
307
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">4</p>
308
+ <div className="relative shrink-0 size-[10px]" data-name="node">
309
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
310
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
311
+ </svg>
312
+ </div>
313
+ <SpacerTailWind8 />
314
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">0</p>
315
+ <div className="relative shrink-0 size-[10px]" data-name="node">
316
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
317
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
318
+ </svg>
319
+ </div>
320
+ <SpacerTailWind9 />
321
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
322
+ <p className="mb-0">19-09-2025</p>
323
+ <p>10:00</p>
324
+ </div>
325
+ </div>
326
+ );
327
+ }
328
+
329
+ function SpacerTailWind10() {
330
+ return (
331
+ <div className="h-[48px] relative shrink-0 w-full" data-name="Spacer TailWind">
332
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
333
+ </div>
334
+ );
335
+ }
336
+
337
+ function SpacerTailWind11() {
338
+ return (
339
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
340
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
341
+ </div>
342
+ );
343
+ }
344
+
345
+ function SpacerTailWind12() {
346
+ return (
347
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
348
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
349
+ </div>
350
+ );
351
+ }
352
+
353
+ function Col3() {
354
+ return (
355
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
356
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">9</p>
357
+ <div className="relative shrink-0 size-[10px]" data-name="node">
358
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
359
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
360
+ </svg>
361
+ </div>
362
+ <SpacerTailWind10 />
363
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">3</p>
364
+ <div className="relative shrink-0 size-[10px]" data-name="node">
365
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
366
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
367
+ </svg>
368
+ </div>
369
+ <SpacerTailWind11 />
370
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">2</p>
371
+ <div className="relative shrink-0 size-[10px]" data-name="node">
372
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
373
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
374
+ </svg>
375
+ </div>
376
+ <SpacerTailWind12 />
377
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
378
+ <p className="mb-0">19-09-2025</p>
379
+ <p>10:00</p>
380
+ </div>
381
+ </div>
382
+ );
383
+ }
384
+
385
+ function SpacerTailWind13() {
386
+ return (
387
+ <div className="h-[40px] relative shrink-0 w-full" data-name="Spacer TailWind">
388
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
389
+ </div>
390
+ );
391
+ }
392
+
393
+ function SpacerTailWind14() {
394
+ return (
395
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
396
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
397
+ </div>
398
+ );
399
+ }
400
+
401
+ function SpacerTailWind15() {
402
+ return (
403
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
404
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
405
+ </div>
406
+ );
407
+ }
408
+
409
+ function Col4() {
410
+ return (
411
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
412
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">8</p>
413
+ <div className="relative shrink-0 size-[10px]" data-name="node">
414
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
415
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
416
+ </svg>
417
+ </div>
418
+ <SpacerTailWind13 />
419
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">3</p>
420
+ <div className="relative shrink-0 size-[10px]" data-name="node">
421
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
422
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
423
+ </svg>
424
+ </div>
425
+ <SpacerTailWind14 />
426
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">0</p>
427
+ <div className="relative shrink-0 size-[10px]" data-name="node">
428
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
429
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
430
+ </svg>
431
+ </div>
432
+ <SpacerTailWind15 />
433
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
434
+ <p className="mb-0">19-09-2025</p>
435
+ <p>10:00</p>
436
+ </div>
437
+ </div>
438
+ );
439
+ }
440
+
441
+ function SpacerTailWind16() {
442
+ return (
443
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
444
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
445
+ </div>
446
+ );
447
+ }
448
+
449
+ function SpacerTailWind17() {
450
+ return (
451
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
452
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
453
+ </div>
454
+ );
455
+ }
456
+
457
+ function SpacerTailWind18() {
458
+ return (
459
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
460
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
461
+ </div>
462
+ );
463
+ }
464
+
465
+ function Col5() {
466
+ return (
467
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
468
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">5</p>
469
+ <div className="relative shrink-0 size-[10px]" data-name="node">
470
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
471
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
472
+ </svg>
473
+ </div>
474
+ <SpacerTailWind16 />
475
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">4</p>
476
+ <div className="relative shrink-0 size-[10px]" data-name="node">
477
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
478
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
479
+ </svg>
480
+ </div>
481
+ <SpacerTailWind17 />
482
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">0</p>
483
+ <div className="relative shrink-0 size-[10px]" data-name="node">
484
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
485
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
486
+ </svg>
487
+ </div>
488
+ <SpacerTailWind18 />
489
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
490
+ <p className="mb-0">19-09-2025</p>
491
+ <p>10:00</p>
492
+ </div>
493
+ </div>
494
+ );
495
+ }
496
+
497
+ function SpacerTailWind19() {
498
+ return (
499
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
500
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
501
+ </div>
502
+ );
503
+ }
504
+
505
+ function SpacerTailWind20() {
506
+ return (
507
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
508
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
509
+ </div>
510
+ );
511
+ }
512
+
513
+ function SpacerTailWind21() {
514
+ return (
515
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
516
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
517
+ </div>
518
+ );
519
+ }
520
+
521
+ function Col6() {
522
+ return (
523
+ <div className="content-stretch flex flex-col items-center justify-center relative shrink-0" data-name="COL">
524
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">5</p>
525
+ <div className="relative shrink-0 size-[10px]" data-name="node">
526
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
527
+ <circle cx="5" cy="5" fill="var(--fill-0, #33BA9E)" id="node" r="5" />
528
+ </svg>
529
+ </div>
530
+ <SpacerTailWind19 />
531
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">4</p>
532
+ <div className="relative shrink-0 size-[10px]" data-name="node">
533
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
534
+ <circle cx="5" cy="5" fill="var(--fill-0, #FF3131)" id="node" r="5" />
535
+ </svg>
536
+ </div>
537
+ <SpacerTailWind20 />
538
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-center text-white">0</p>
539
+ <div className="relative shrink-0 size-[10px]" data-name="node">
540
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 10">
541
+ <circle cx="5" cy="5" fill="var(--fill-0, #F48D21)" id="node" r="5" />
542
+ </svg>
543
+ </div>
544
+ <SpacerTailWind21 />
545
+ <div className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px] text-center whitespace-nowrap">
546
+ <p className="mb-0">19-09-2025</p>
547
+ <p>10:00</p>
548
+ </div>
549
+ </div>
550
+ );
551
+ }
552
+
553
+ function ChartLineHorizontal1() {
554
+ return (
555
+ <div className="content-stretch flex items-end justify-between relative shrink-0 w-full" data-name="CHART Line horizontal">
556
+ <Col />
557
+ <Col1 />
558
+ <Col2 />
559
+ <Col3 />
560
+ <Col4 />
561
+ <Col5 />
562
+ <Col6 />
563
+ <div className="absolute bottom-[40px] h-[121px] left-[25px] right-[27px]" data-name="Line">
564
+ <div className="absolute inset-[-0.54%_0]">
565
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 708.046 122.31">
566
+ <path d={svgPaths.p35553200} id="Line" stroke="var(--stroke-0, #33BA9E)" />
567
+ </svg>
568
+ </div>
569
+ </div>
570
+ <div className="absolute bottom-[41px] h-[71px] left-[25px] right-[28px]" data-name="Line">
571
+ <div className="absolute inset-[-0.72%_0_-0.7%_0]">
572
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 707.046 72.0106">
573
+ <path d={svgPaths.p5822d30} id="Line" stroke="var(--stroke-0, #F48D21)" />
574
+ </svg>
575
+ </div>
576
+ </div>
577
+ <div className="absolute bottom-[40px] h-[102px] left-[25px] right-[27px]" data-name="Line">
578
+ <div className="absolute inset-[-0.57%_0_-0.49%_0]">
579
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 708.051 103.081">
580
+ <path d={svgPaths.p1bd5e640} id="Line" stroke="var(--stroke-0, #FF3131)" />
581
+ </svg>
582
+ </div>
583
+ </div>
584
+ </div>
585
+ );
586
+ }
587
+
588
+ function SpacerTailWind22() {
589
+ return (
590
+ <div className="h-[20px] relative shrink-0 w-full" data-name="Spacer TailWind">
591
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
592
+ </div>
593
+ );
594
+ }
595
+
596
+ function LegendDot3() {
597
+ return (
598
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
599
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
600
+ <g id="legend dot">
601
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #78EAC1)" id="legend dot_2" r="2.5" />
602
+ </g>
603
+ </svg>
604
+ </div>
605
+ );
606
+ }
607
+
608
+ function LegendItem3() {
609
+ return (
610
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
611
+ <LegendDot3 />
612
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">passed</p>
613
+ </div>
614
+ );
615
+ }
616
+
617
+ function LegendDot4() {
618
+ return (
619
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
620
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
621
+ <g id="legend dot">
622
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #FF3131)" id="legend dot_2" r="2.5" />
623
+ </g>
624
+ </svg>
625
+ </div>
626
+ );
627
+ }
628
+
629
+ function LegendItem4() {
630
+ return (
631
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
632
+ <LegendDot4 />
633
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">failed</p>
634
+ </div>
635
+ );
636
+ }
637
+
638
+ function LegendDot5() {
639
+ return (
640
+ <div className="relative shrink-0 size-[5px]" data-name="legend dot">
641
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 5 5">
642
+ <g id="legend dot">
643
+ <circle cx="2.5" cy="2.5" fill="var(--fill-0, #F48D21)" id="legend dot_2" r="2.5" />
644
+ </g>
645
+ </svg>
646
+ </div>
647
+ );
648
+ }
649
+
650
+ function LegendItem5() {
651
+ return (
652
+ <div className="content-stretch flex gap-[6px] items-center justify-center relative shrink-0" data-name="Legend item">
653
+ <LegendDot5 />
654
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#888] text-[11px]">blocked</p>
655
+ </div>
656
+ );
657
+ }
658
+
659
+ function Legend1() {
660
+ return (
661
+ <div className="content-stretch flex gap-[10px] h-[13px] items-center justify-center relative shrink-0 w-full" data-name="Legend">
662
+ <LegendItem3 />
663
+ <LegendItem4 />
664
+ <LegendItem5 />
665
+ </div>
666
+ );
667
+ }
668
+
669
+ function CardLineChart() {
670
+ return (
671
+ <div className="bg-[#1d1d1d] flex-[1_0_0] min-h-px min-w-px relative rounded-[15px]" data-name="CARD Line chart">
672
+ <div className="content-stretch flex flex-col items-start p-[30px] relative w-full">
673
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[22px] not-italic relative shrink-0 text-[18px] text-white uppercase w-full whitespace-pre-wrap">TEST SESSION RESULTS</p>
674
+ <SpacerTestio1 />
675
+ <ChartLineHorizontal1 />
676
+ <SpacerTailWind22 />
677
+ <Legend1 />
678
+ </div>
679
+ </div>
680
+ );
681
+ }
682
+
683
+ function IconPlusXl() {
684
+ return (
685
+ <div className="relative shrink-0 size-[60px]" data-name="icon-plus-xl">
686
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 60 60">
687
+ <g clipPath="url(#clip0_31_2264)" id="icon-plus-xl">
688
+ <path d={svgPaths.p2455100} fill="var(--fill-0, #78EAC1)" id="Union" />
689
+ </g>
690
+ <defs>
691
+ <clipPath id="clip0_31_2264">
692
+ <rect fill="white" height="60" width="60" />
693
+ </clipPath>
694
+ </defs>
695
+ </svg>
696
+ </div>
697
+ );
698
+ }
699
+
700
+ function IconWrapper() {
701
+ return (
702
+ <div className="content-stretch flex flex-col items-center justify-center pb-[20px] relative shrink-0" data-name="Icon wrapper">
703
+ <IconPlusXl />
704
+ </div>
705
+ );
706
+ }
707
+
708
+ function BtnXl() {
709
+ return (
710
+ <div className="content-stretch flex flex-col items-center justify-center px-[30px] py-[50px] relative rounded-[10px] self-stretch shrink-0 w-[300px]" data-name="btn-xl">
711
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
712
+ <IconWrapper />
713
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[14px] min-w-full relative shrink-0 text-[#78eac1] text-[16px] text-center uppercase w-[min-content] whitespace-pre-wrap">CREATE NEW TEST SESSION</p>
714
+ </div>
715
+ );
716
+ }
717
+
718
+ function Row() {
719
+ return (
720
+ <div className="content-stretch flex gap-[40px] items-start relative shrink-0 w-full" data-name="ROW">
721
+ <CardDonut />
722
+ <CardLineChart />
723
+ <BtnXl />
724
+ </div>
725
+ );
726
+ }
727
+
728
+ function SpacerTailWind23() {
729
+ return (
730
+ <div className="h-[40px] relative shrink-0 w-full" data-name="Spacer TailWind">
731
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
732
+ </div>
733
+ );
734
+ }
735
+
736
+ function SpacerTestio2() {
737
+ return <div className="h-[20px] shrink-0 w-full" data-name="spacer-testio" />;
738
+ }
739
+
740
+ function TitelWrapper() {
741
+ return (
742
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
743
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
744
+ </div>
745
+ );
746
+ }
747
+
748
+ function IconCheckCircleFilled() {
749
+ return (
750
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
751
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
752
+ <g id="icon-check-circle-filled">
753
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
754
+ </g>
755
+ </svg>
756
+ </div>
757
+ );
758
+ }
759
+
760
+ function SpacerTestio3() {
761
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
762
+ }
763
+
764
+ function Item() {
765
+ return (
766
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
767
+ <IconCheckCircleFilled />
768
+ <SpacerTestio3 />
769
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
770
+ </div>
771
+ );
772
+ }
773
+
774
+ function SpacerTestio4() {
775
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
776
+ }
777
+
778
+ function IconCrossCircleFilled() {
779
+ return (
780
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
781
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
782
+ <g id="icon-cross-circle-filled">
783
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
784
+ </g>
785
+ </svg>
786
+ </div>
787
+ );
788
+ }
789
+
790
+ function SpacerTestio5() {
791
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
792
+ }
793
+
794
+ function Item1() {
795
+ return (
796
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
797
+ <IconCrossCircleFilled />
798
+ <SpacerTestio5 />
799
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
800
+ </div>
801
+ );
802
+ }
803
+
804
+ function SpacerTestio6() {
805
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
806
+ }
807
+
808
+ function IconBlocked() {
809
+ return (
810
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
811
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
812
+ <g id="icon-blocked">
813
+ <g id="blocked" />
814
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
815
+ </g>
816
+ </svg>
817
+ </div>
818
+ );
819
+ }
820
+
821
+ function SpacerTestio7() {
822
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
823
+ }
824
+
825
+ function Item2() {
826
+ return (
827
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
828
+ <IconBlocked />
829
+ <SpacerTestio7 />
830
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
831
+ </div>
832
+ );
833
+ }
834
+
835
+ function SpacerTestio8() {
836
+ return (
837
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
838
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
839
+ </div>
840
+ );
841
+ }
842
+
843
+ function Counter() {
844
+ return (
845
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
846
+ <Item />
847
+ <SpacerTestio4 />
848
+ <Item1 />
849
+ <SpacerTestio6 />
850
+ <Item2 />
851
+ <SpacerTestio8 />
852
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">3 checks total</p>
853
+ </div>
854
+ );
855
+ }
856
+
857
+ function Header() {
858
+ return (
859
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
860
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
861
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
862
+ <TitelWrapper />
863
+ <Counter />
864
+ </div>
865
+ </div>
866
+ );
867
+ }
868
+
869
+ function GridListItem() {
870
+ return (
871
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
872
+ <Header />
873
+ </div>
874
+ );
875
+ }
876
+
877
+ function SpacerTailWind24() {
878
+ return (
879
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
880
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
881
+ </div>
882
+ );
883
+ }
884
+
885
+ function TitelWrapper1() {
886
+ return (
887
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
888
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
889
+ </div>
890
+ );
891
+ }
892
+
893
+ function IconCheckCircleFilled1() {
894
+ return (
895
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
896
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
897
+ <g id="icon-check-circle-filled">
898
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
899
+ </g>
900
+ </svg>
901
+ </div>
902
+ );
903
+ }
904
+
905
+ function SpacerTestio9() {
906
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
907
+ }
908
+
909
+ function Item3() {
910
+ return (
911
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
912
+ <IconCheckCircleFilled1 />
913
+ <SpacerTestio9 />
914
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">33</p>
915
+ </div>
916
+ );
917
+ }
918
+
919
+ function SpacerTestio10() {
920
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
921
+ }
922
+
923
+ function IconCrossCircleFilled1() {
924
+ return (
925
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
926
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
927
+ <g id="icon-cross-circle-filled">
928
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
929
+ </g>
930
+ </svg>
931
+ </div>
932
+ );
933
+ }
934
+
935
+ function SpacerTestio11() {
936
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
937
+ }
938
+
939
+ function Item4() {
940
+ return (
941
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
942
+ <IconCrossCircleFilled1 />
943
+ <SpacerTestio11 />
944
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">33</p>
945
+ </div>
946
+ );
947
+ }
948
+
949
+ function SpacerTestio12() {
950
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
951
+ }
952
+
953
+ function IconBlocked1() {
954
+ return (
955
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
956
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
957
+ <g id="icon-blocked">
958
+ <g id="blocked" />
959
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
960
+ </g>
961
+ </svg>
962
+ </div>
963
+ );
964
+ }
965
+
966
+ function SpacerTestio13() {
967
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
968
+ }
969
+
970
+ function Item5() {
971
+ return (
972
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
973
+ <IconBlocked1 />
974
+ <SpacerTestio13 />
975
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">33</p>
976
+ </div>
977
+ );
978
+ }
979
+
980
+ function SpacerTestio14() {
981
+ return (
982
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
983
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
984
+ </div>
985
+ );
986
+ }
987
+
988
+ function Counter1() {
989
+ return (
990
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
991
+ <Item3 />
992
+ <SpacerTestio10 />
993
+ <Item4 />
994
+ <SpacerTestio12 />
995
+ <Item5 />
996
+ <SpacerTestio14 />
997
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">99 checks total</p>
998
+ </div>
999
+ );
1000
+ }
1001
+
1002
+ function Header1() {
1003
+ return (
1004
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
1005
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
1006
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
1007
+ <TitelWrapper1 />
1008
+ <Counter1 />
1009
+ </div>
1010
+ </div>
1011
+ );
1012
+ }
1013
+
1014
+ function GridListItem1() {
1015
+ return (
1016
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
1017
+ <Header1 />
1018
+ </div>
1019
+ );
1020
+ }
1021
+
1022
+ function SpacerTailWind25() {
1023
+ return (
1024
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
1025
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
1026
+ </div>
1027
+ );
1028
+ }
1029
+
1030
+ function TitelWrapper2() {
1031
+ return (
1032
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
1033
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
1034
+ </div>
1035
+ );
1036
+ }
1037
+
1038
+ function IconCheckCircleFilled2() {
1039
+ return (
1040
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
1041
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1042
+ <g id="icon-check-circle-filled">
1043
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
1044
+ </g>
1045
+ </svg>
1046
+ </div>
1047
+ );
1048
+ }
1049
+
1050
+ function SpacerTestio15() {
1051
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1052
+ }
1053
+
1054
+ function Item6() {
1055
+ return (
1056
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1057
+ <IconCheckCircleFilled2 />
1058
+ <SpacerTestio15 />
1059
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">50</p>
1060
+ </div>
1061
+ );
1062
+ }
1063
+
1064
+ function SpacerTestio16() {
1065
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1066
+ }
1067
+
1068
+ function IconCrossCircleFilled2() {
1069
+ return (
1070
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
1071
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1072
+ <g id="icon-cross-circle-filled">
1073
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
1074
+ </g>
1075
+ </svg>
1076
+ </div>
1077
+ );
1078
+ }
1079
+
1080
+ function SpacerTestio17() {
1081
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1082
+ }
1083
+
1084
+ function Item7() {
1085
+ return (
1086
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1087
+ <IconCrossCircleFilled2 />
1088
+ <SpacerTestio17 />
1089
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">10</p>
1090
+ </div>
1091
+ );
1092
+ }
1093
+
1094
+ function SpacerTestio18() {
1095
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1096
+ }
1097
+
1098
+ function IconBlocked2() {
1099
+ return (
1100
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
1101
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1102
+ <g id="icon-blocked">
1103
+ <g id="blocked" />
1104
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
1105
+ </g>
1106
+ </svg>
1107
+ </div>
1108
+ );
1109
+ }
1110
+
1111
+ function SpacerTestio19() {
1112
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1113
+ }
1114
+
1115
+ function Item8() {
1116
+ return (
1117
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1118
+ <IconBlocked2 />
1119
+ <SpacerTestio19 />
1120
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1121
+ </div>
1122
+ );
1123
+ }
1124
+
1125
+ function SpacerTestio20() {
1126
+ return (
1127
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
1128
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
1129
+ </div>
1130
+ );
1131
+ }
1132
+
1133
+ function Counter2() {
1134
+ return (
1135
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
1136
+ <Item6 />
1137
+ <SpacerTestio16 />
1138
+ <Item7 />
1139
+ <SpacerTestio18 />
1140
+ <Item8 />
1141
+ <SpacerTestio20 />
1142
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">99 checks total</p>
1143
+ </div>
1144
+ );
1145
+ }
1146
+
1147
+ function Header2() {
1148
+ return (
1149
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
1150
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
1151
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
1152
+ <TitelWrapper2 />
1153
+ <Counter2 />
1154
+ </div>
1155
+ </div>
1156
+ );
1157
+ }
1158
+
1159
+ function GridListItem2() {
1160
+ return (
1161
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
1162
+ <Header2 />
1163
+ </div>
1164
+ );
1165
+ }
1166
+
1167
+ function SpacerTailWind26() {
1168
+ return (
1169
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
1170
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
1171
+ </div>
1172
+ );
1173
+ }
1174
+
1175
+ function TitelWrapper3() {
1176
+ return (
1177
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
1178
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
1179
+ </div>
1180
+ );
1181
+ }
1182
+
1183
+ function IconCheckCircleFilled3() {
1184
+ return (
1185
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
1186
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1187
+ <g id="icon-check-circle-filled">
1188
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
1189
+ </g>
1190
+ </svg>
1191
+ </div>
1192
+ );
1193
+ }
1194
+
1195
+ function SpacerTestio21() {
1196
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1197
+ }
1198
+
1199
+ function Item9() {
1200
+ return (
1201
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1202
+ <IconCheckCircleFilled3 />
1203
+ <SpacerTestio21 />
1204
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1205
+ </div>
1206
+ );
1207
+ }
1208
+
1209
+ function SpacerTestio22() {
1210
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1211
+ }
1212
+
1213
+ function IconCrossCircleFilled3() {
1214
+ return (
1215
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
1216
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1217
+ <g id="icon-cross-circle-filled">
1218
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
1219
+ </g>
1220
+ </svg>
1221
+ </div>
1222
+ );
1223
+ }
1224
+
1225
+ function SpacerTestio23() {
1226
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1227
+ }
1228
+
1229
+ function Item10() {
1230
+ return (
1231
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1232
+ <IconCrossCircleFilled3 />
1233
+ <SpacerTestio23 />
1234
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1235
+ </div>
1236
+ );
1237
+ }
1238
+
1239
+ function SpacerTestio24() {
1240
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1241
+ }
1242
+
1243
+ function IconBlocked3() {
1244
+ return (
1245
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
1246
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1247
+ <g id="icon-blocked">
1248
+ <g id="blocked" />
1249
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
1250
+ </g>
1251
+ </svg>
1252
+ </div>
1253
+ );
1254
+ }
1255
+
1256
+ function SpacerTestio25() {
1257
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1258
+ }
1259
+
1260
+ function Item11() {
1261
+ return (
1262
+ <div className="content-stretch flex items-center opacity-0 relative shrink-0" data-name="Item">
1263
+ <IconBlocked3 />
1264
+ <SpacerTestio25 />
1265
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1266
+ </div>
1267
+ );
1268
+ }
1269
+
1270
+ function SpacerTestio26() {
1271
+ return (
1272
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
1273
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
1274
+ </div>
1275
+ );
1276
+ }
1277
+
1278
+ function Counter3() {
1279
+ return (
1280
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
1281
+ <Item9 />
1282
+ <SpacerTestio22 />
1283
+ <Item10 />
1284
+ <SpacerTestio24 />
1285
+ <Item11 />
1286
+ <SpacerTestio26 />
1287
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">2 checks total</p>
1288
+ </div>
1289
+ );
1290
+ }
1291
+
1292
+ function Header3() {
1293
+ return (
1294
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
1295
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
1296
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
1297
+ <TitelWrapper3 />
1298
+ <Counter3 />
1299
+ </div>
1300
+ </div>
1301
+ );
1302
+ }
1303
+
1304
+ function GridListItem3() {
1305
+ return (
1306
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
1307
+ <Header3 />
1308
+ </div>
1309
+ );
1310
+ }
1311
+
1312
+ function SpacerTailWind27() {
1313
+ return (
1314
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
1315
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
1316
+ </div>
1317
+ );
1318
+ }
1319
+
1320
+ function TitelWrapper4() {
1321
+ return (
1322
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
1323
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
1324
+ </div>
1325
+ );
1326
+ }
1327
+
1328
+ function IconCheckCircleFilled4() {
1329
+ return (
1330
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
1331
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1332
+ <g id="icon-check-circle-filled">
1333
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
1334
+ </g>
1335
+ </svg>
1336
+ </div>
1337
+ );
1338
+ }
1339
+
1340
+ function SpacerTestio27() {
1341
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1342
+ }
1343
+
1344
+ function Item12() {
1345
+ return (
1346
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1347
+ <IconCheckCircleFilled4 />
1348
+ <SpacerTestio27 />
1349
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">99</p>
1350
+ </div>
1351
+ );
1352
+ }
1353
+
1354
+ function SpacerTestio28() {
1355
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1356
+ }
1357
+
1358
+ function IconCrossCircleFilled4() {
1359
+ return (
1360
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
1361
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1362
+ <g id="icon-cross-circle-filled">
1363
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
1364
+ </g>
1365
+ </svg>
1366
+ </div>
1367
+ );
1368
+ }
1369
+
1370
+ function SpacerTestio29() {
1371
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1372
+ }
1373
+
1374
+ function Item13() {
1375
+ return (
1376
+ <div className="content-stretch flex items-center opacity-0 relative shrink-0" data-name="Item">
1377
+ <IconCrossCircleFilled4 />
1378
+ <SpacerTestio29 />
1379
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1380
+ </div>
1381
+ );
1382
+ }
1383
+
1384
+ function SpacerTestio30() {
1385
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1386
+ }
1387
+
1388
+ function IconBlocked4() {
1389
+ return (
1390
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
1391
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1392
+ <g id="icon-blocked">
1393
+ <g id="blocked" />
1394
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
1395
+ </g>
1396
+ </svg>
1397
+ </div>
1398
+ );
1399
+ }
1400
+
1401
+ function SpacerTestio31() {
1402
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1403
+ }
1404
+
1405
+ function Item14() {
1406
+ return (
1407
+ <div className="content-stretch flex items-center opacity-0 relative shrink-0" data-name="Item">
1408
+ <IconBlocked4 />
1409
+ <SpacerTestio31 />
1410
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1411
+ </div>
1412
+ );
1413
+ }
1414
+
1415
+ function SpacerTestio32() {
1416
+ return (
1417
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
1418
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
1419
+ </div>
1420
+ );
1421
+ }
1422
+
1423
+ function Counter4() {
1424
+ return (
1425
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
1426
+ <Item12 />
1427
+ <SpacerTestio28 />
1428
+ <Item13 />
1429
+ <SpacerTestio30 />
1430
+ <Item14 />
1431
+ <SpacerTestio32 />
1432
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">99 checks total</p>
1433
+ </div>
1434
+ );
1435
+ }
1436
+
1437
+ function Header4() {
1438
+ return (
1439
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
1440
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
1441
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
1442
+ <TitelWrapper4 />
1443
+ <Counter4 />
1444
+ </div>
1445
+ </div>
1446
+ );
1447
+ }
1448
+
1449
+ function GridListItem4() {
1450
+ return (
1451
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
1452
+ <Header4 />
1453
+ </div>
1454
+ );
1455
+ }
1456
+
1457
+ function SpacerTailWind28() {
1458
+ return (
1459
+ <div className="h-[10px] relative shrink-0 w-full" data-name="Spacer TailWind">
1460
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
1461
+ </div>
1462
+ );
1463
+ }
1464
+
1465
+ function TitelWrapper5() {
1466
+ return (
1467
+ <div className="content-stretch flex flex-[1_0_0] items-center min-h-px min-w-px pt-[2px] relative" data-name="Titel wrapper">
1468
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Test session title</p>
1469
+ </div>
1470
+ );
1471
+ }
1472
+
1473
+ function IconCheckCircleFilled5() {
1474
+ return (
1475
+ <div className="relative shrink-0 size-[20px]" data-name="icon-check-circle-filled">
1476
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1477
+ <g id="icon-check-circle-filled">
1478
+ <path d={svgPaths.p30b87920} fill="var(--fill-0, #33BA9E)" id="Union" />
1479
+ </g>
1480
+ </svg>
1481
+ </div>
1482
+ );
1483
+ }
1484
+
1485
+ function SpacerTestio33() {
1486
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1487
+ }
1488
+
1489
+ function Item15() {
1490
+ return (
1491
+ <div className="content-stretch flex items-center opacity-0 relative shrink-0" data-name="Item">
1492
+ <IconCheckCircleFilled5 />
1493
+ <SpacerTestio33 />
1494
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">99</p>
1495
+ </div>
1496
+ );
1497
+ }
1498
+
1499
+ function SpacerTestio34() {
1500
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1501
+ }
1502
+
1503
+ function IconCrossCircleFilled5() {
1504
+ return (
1505
+ <div className="relative shrink-0 size-[20px]" data-name="icon-cross-circle-filled">
1506
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1507
+ <g id="icon-cross-circle-filled">
1508
+ <path d={svgPaths.p30bab400} fill="var(--fill-0, #FF3131)" id="Union" />
1509
+ </g>
1510
+ </svg>
1511
+ </div>
1512
+ );
1513
+ }
1514
+
1515
+ function SpacerTestio35() {
1516
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1517
+ }
1518
+
1519
+ function Item16() {
1520
+ return (
1521
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1522
+ <IconCrossCircleFilled5 />
1523
+ <SpacerTestio35 />
1524
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">3</p>
1525
+ </div>
1526
+ );
1527
+ }
1528
+
1529
+ function SpacerTestio36() {
1530
+ return <div className="shrink-0 size-[20px]" data-name="spacer-testio" />;
1531
+ }
1532
+
1533
+ function IconBlocked5() {
1534
+ return (
1535
+ <div className="relative shrink-0 size-[20px]" data-name="icon-blocked">
1536
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1537
+ <g id="icon-blocked">
1538
+ <g id="blocked" />
1539
+ <path d={svgPaths.p13555100} fill="var(--fill-0, #F48D21)" id="Union" />
1540
+ </g>
1541
+ </svg>
1542
+ </div>
1543
+ );
1544
+ }
1545
+
1546
+ function SpacerTestio37() {
1547
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1548
+ }
1549
+
1550
+ function Item17() {
1551
+ return (
1552
+ <div className="content-stretch flex items-center opacity-0 relative shrink-0" data-name="Item">
1553
+ <IconBlocked5 />
1554
+ <SpacerTestio37 />
1555
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white w-[15px] whitespace-pre-wrap">1</p>
1556
+ </div>
1557
+ );
1558
+ }
1559
+
1560
+ function SpacerTestio38() {
1561
+ return (
1562
+ <div className="h-[20px] relative shrink-0 w-[30px]" data-name="spacer-testio">
1563
+ <div className="absolute bottom-1/2 left-0 right-[66.67%] top-0" data-name="spacer" />
1564
+ </div>
1565
+ );
1566
+ }
1567
+
1568
+ function Counter5() {
1569
+ return (
1570
+ <div className="content-stretch flex items-center relative shrink-0" data-name="COUNTER">
1571
+ <Item15 />
1572
+ <SpacerTestio34 />
1573
+ <Item16 />
1574
+ <SpacerTestio36 />
1575
+ <Item17 />
1576
+ <SpacerTestio38 />
1577
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-right text-white w-[87px] whitespace-pre-wrap">3 checks total</p>
1578
+ </div>
1579
+ );
1580
+ }
1581
+
1582
+ function Header5() {
1583
+ return (
1584
+ <div className="bg-[#262626] min-h-[40px] relative rounded-[5px] shrink-0 w-full" data-name="HEADER">
1585
+ <div aria-hidden="true" className="absolute border border-[#262626] border-solid inset-0 pointer-events-none rounded-[5px]" />
1586
+ <div className="content-stretch flex gap-[10px] items-start min-h-[inherit] px-[20px] py-[10px] relative w-full">
1587
+ <TitelWrapper5 />
1588
+ <Counter5 />
1589
+ </div>
1590
+ </div>
1591
+ );
1592
+ }
1593
+
1594
+ function GridListItem5() {
1595
+ return (
1596
+ <div className="content-stretch flex flex-col h-[40px] items-start relative rounded-[5px] shrink-0 w-full" data-name="Grid List item">
1597
+ <Header5 />
1598
+ </div>
1599
+ );
1600
+ }
1601
+
1602
+ function SpacerTailWind29() {
1603
+ return (
1604
+ <div className="h-[28px] relative shrink-0 w-full" data-name="Spacer TailWind">
1605
+ <div className="absolute bg-[rgba(217,217,217,0)] inset-0" data-name="Spacer" />
1606
+ </div>
1607
+ );
1608
+ }
1609
+
1610
+ function IconCheckCircleFilled6() {
1611
+ return (
1612
+ <div className="relative shrink-0 size-[16px]" data-name="icon-check-circle-filled">
1613
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 16.0002 16.0002">
1614
+ <g id="icon-check-circle-filled">
1615
+ <path d={svgPaths.p1c7818a0} fill="var(--fill-0, #33BA9E)" id="Union" />
1616
+ </g>
1617
+ </svg>
1618
+ </div>
1619
+ );
1620
+ }
1621
+
1622
+ function SpacerTestio39() {
1623
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1624
+ }
1625
+
1626
+ function Item18() {
1627
+ return (
1628
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1629
+ <IconCheckCircleFilled6 />
1630
+ <SpacerTestio39 />
1631
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#888] text-[13px]">passed</p>
1632
+ </div>
1633
+ );
1634
+ }
1635
+
1636
+ function SpacerTestio40() {
1637
+ return (
1638
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
1639
+ <div className="absolute inset-[0_33.33%_33.33%_0]" data-name="spacer" />
1640
+ </div>
1641
+ );
1642
+ }
1643
+
1644
+ function IconCrossCircleFilled6() {
1645
+ return (
1646
+ <div className="relative shrink-0 size-[16px]" data-name="icon-cross-circle-filled">
1647
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 16.0002 16.0002">
1648
+ <g id="icon-cross-circle-filled">
1649
+ <path d={svgPaths.p35ef7800} fill="var(--fill-0, #FF3131)" id="Union" />
1650
+ </g>
1651
+ </svg>
1652
+ </div>
1653
+ );
1654
+ }
1655
+
1656
+ function SpacerTestio41() {
1657
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1658
+ }
1659
+
1660
+ function Item19() {
1661
+ return (
1662
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1663
+ <IconCrossCircleFilled6 />
1664
+ <SpacerTestio41 />
1665
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#888] text-[13px]">failed</p>
1666
+ </div>
1667
+ );
1668
+ }
1669
+
1670
+ function SpacerTestio42() {
1671
+ return (
1672
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
1673
+ <div className="absolute inset-[0_33.33%_33.33%_0]" data-name="spacer" />
1674
+ </div>
1675
+ );
1676
+ }
1677
+
1678
+ function IconBlocked6() {
1679
+ return (
1680
+ <div className="relative shrink-0 size-[16px]" data-name="icon-blocked">
1681
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 16 16">
1682
+ <g id="icon-blocked">
1683
+ <g id="blocked" />
1684
+ <path d={svgPaths.p3e1c0930} fill="var(--fill-0, #F48D21)" id="Union" />
1685
+ </g>
1686
+ </svg>
1687
+ </div>
1688
+ );
1689
+ }
1690
+
1691
+ function SpacerTestio43() {
1692
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
1693
+ }
1694
+
1695
+ function Item20() {
1696
+ return (
1697
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Item">
1698
+ <IconBlocked6 />
1699
+ <SpacerTestio43 />
1700
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#888] text-[13px]">blocked</p>
1701
+ </div>
1702
+ );
1703
+ }
1704
+
1705
+ function Legend2() {
1706
+ return (
1707
+ <div className="content-stretch flex items-center justify-end relative shrink-0 w-full" data-name="Legend">
1708
+ <Item18 />
1709
+ <SpacerTestio40 />
1710
+ <Item19 />
1711
+ <SpacerTestio42 />
1712
+ <Item20 />
1713
+ </div>
1714
+ );
1715
+ }
1716
+
1717
+ function Card() {
1718
+ return (
1719
+ <div className="bg-[#1d1d1d] relative rounded-[15px] shrink-0 w-full" data-name="CARD">
1720
+ <div className="content-stretch flex flex-col items-start p-[30px] relative w-full">
1721
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[22px] not-italic relative shrink-0 text-[18px] text-white uppercase w-full whitespace-pre-wrap">LAST TEST SESSIONS</p>
1722
+ <SpacerTestio2 />
1723
+ <GridListItem />
1724
+ <SpacerTailWind24 />
1725
+ <GridListItem1 />
1726
+ <SpacerTailWind25 />
1727
+ <GridListItem2 />
1728
+ <SpacerTailWind26 />
1729
+ <GridListItem3 />
1730
+ <SpacerTailWind27 />
1731
+ <GridListItem4 />
1732
+ <SpacerTailWind28 />
1733
+ <GridListItem5 />
1734
+ <SpacerTailWind29 />
1735
+ <Legend2 />
1736
+ </div>
1737
+ </div>
1738
+ );
1739
+ }
1740
+
1741
+ function MainContent() {
1742
+ return (
1743
+ <div className="absolute content-stretch flex flex-col items-start left-[160px] px-[50px] py-[64px] top-[70px] w-[1600px]" data-name="MAIN CONTENT">
1744
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] not-italic relative shrink-0 text-[25px] text-white w-full whitespace-pre-wrap">DASHBOARD</p>
1745
+ <SpacerTestinator />
1746
+ <Row />
1747
+ <SpacerTailWind23 />
1748
+ <Card />
1749
+ </div>
1750
+ );
1751
+ }
1752
+
1753
+ function LogoTestinator() {
1754
+ return (
1755
+ <div className="absolute inset-[0_0.44%_0_0] mask-alpha mask-intersect mask-no-clip mask-no-repeat mask-position-[0px_0px] mask-size-[148px_34px]" data-name="Logo-testinator" style={{ maskImage: `url('${imgLogoTestinator}')` }}>
1756
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 147.351 34.0003">
1757
+ <g id="Logo-testinator">
1758
+ <path d={svgPaths.pd3f4900} fill="var(--fill-0, white)" id="Vector" />
1759
+ <path d={svgPaths.p2ef9e700} fill="var(--fill-0, white)" id="Vector_2" />
1760
+ <path d={svgPaths.p1507e900} fill="var(--fill-0, white)" id="Vector_3" />
1761
+ <path d={svgPaths.p63b5500} fill="var(--fill-0, white)" id="Vector_4" />
1762
+ <path d={svgPaths.p73e5c00} fill="var(--fill-0, white)" id="Vector_5" />
1763
+ <path d={svgPaths.p269eee80} fill="var(--fill-0, white)" id="Vector_6" />
1764
+ <path d={svgPaths.p32f5f900} fill="var(--fill-0, white)" id="Vector_7" />
1765
+ <path d={svgPaths.p166df900} fill="var(--fill-0, white)" id="Vector_8" />
1766
+ <path d={svgPaths.p3af52100} fill="var(--fill-0, white)" id="Vector_9" />
1767
+ <path d={svgPaths.p224ff200} fill="var(--fill-0, white)" id="Vector_10" />
1768
+ <path d={svgPaths.p29a28100} fill="var(--fill-0, white)" id="Vector_11" />
1769
+ <path d={svgPaths.p38feaa80} fill="var(--fill-0, white)" id="Vector_12" />
1770
+ <path d={svgPaths.p1649b700} fill="var(--fill-0, white)" id="Vector_13" />
1771
+ <path d={svgPaths.p5b04f70} fill="var(--fill-0, white)" id="Vector_14" />
1772
+ <path d={svgPaths.pafbcd00} fill="var(--fill-0, white)" id="Vector_15" />
1773
+ <path d={svgPaths.p94ead80} fill="var(--fill-0, white)" id="Vector_16" />
1774
+ <path d={svgPaths.p3e1a5280} fill="var(--fill-0, white)" id="Vector_17" />
1775
+ <g id="Group">
1776
+ <path d={svgPaths.p288b2800} fill="var(--fill-0, #7954FF)" id="Vector_18" />
1777
+ </g>
1778
+ <path clipRule="evenodd" d={svgPaths.p1f8b5980} fill="var(--fill-0, #78EAC1)" fillRule="evenodd" id="Vector_19" />
1779
+ </g>
1780
+ </svg>
1781
+ </div>
1782
+ );
1783
+ }
1784
+
1785
+ function Group() {
1786
+ return (
1787
+ <div className="absolute contents inset-[0_0.44%_0_0]" data-name="Group">
1788
+ <LogoTestinator />
1789
+ </div>
1790
+ );
1791
+ }
1792
+
1793
+ function ClipPathGroup() {
1794
+ return (
1795
+ <div className="absolute contents inset-0" data-name="Clip path group">
1796
+ <Group />
1797
+ </div>
1798
+ );
1799
+ }
1800
+
1801
+ function Logo() {
1802
+ return (
1803
+ <div className="h-[34px] overflow-clip relative shrink-0 w-[148px]" data-name="Logo">
1804
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 32 32">
1805
+ <g id="agenticqa_logo_purpleteal_white" />
1806
+ </svg>
1807
+ <ClipPathGroup />
1808
+ </div>
1809
+ );
1810
+ }
1811
+
1812
+ function IconPlus() {
1813
+ return (
1814
+ <div className="relative shrink-0 size-[20px]" data-name="icon-plus">
1815
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
1816
+ <g id="icon-plus">
1817
+ <g id="Rectangle 10" />
1818
+ <path d={svgPaths.p185c8f80} fill="var(--fill-0, white)" id="Union" />
1819
+ </g>
1820
+ </svg>
1821
+ </div>
1822
+ );
1823
+ }
1824
+
1825
+ function IconWrapper1() {
1826
+ return (
1827
+ <div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
1828
+ <IconPlus />
1829
+ </div>
1830
+ );
1831
+ }
1832
+
1833
+ function NavlinkHeader() {
1834
+ return (
1835
+ <div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
1836
+ <IconWrapper1 />
1837
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[14px] relative shrink-0 text-[16px] text-white uppercase">New Test Session</p>
1838
+ </div>
1839
+ );
1840
+ }
1841
+
1842
+ function NavlinkHeader1() {
1843
+ return (
1844
+ <div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
1845
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[14px] relative shrink-0 text-[16px] text-white uppercase">Test Sessions</p>
1846
+ </div>
1847
+ );
1848
+ }
1849
+
1850
+ function NavlinkHeader2() {
1851
+ return (
1852
+ <div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
1853
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[14px] relative shrink-0 text-[16px] text-white uppercase">Check Suites</p>
1854
+ </div>
1855
+ );
1856
+ }
1857
+
1858
+ function Left() {
1859
+ return (
1860
+ <div className="flex-[1_0_0] min-h-px min-w-px relative" data-name="Left">
1861
+ <div className="flex flex-row items-center size-full">
1862
+ <div className="content-stretch flex gap-[5px] items-center pl-[32px] relative w-full">
1863
+ <NavlinkHeader />
1864
+ <NavlinkHeader1 />
1865
+ <NavlinkHeader2 />
1866
+ </div>
1867
+ </div>
1868
+ </div>
1869
+ );
1870
+ }
1871
+
1872
+ function ProfileDropdown() {
1873
+ return (
1874
+ <div className="overflow-clip relative rounded-[100px] shrink-0 size-[40px]" data-name="Profile dropdown">
1875
+ <img alt="" className="absolute inset-0 max-w-none object-cover pointer-events-none size-full" src={imgProfileDropdown} />
1876
+ </div>
1877
+ );
1878
+ }
1879
+
1880
+ function Right() {
1881
+ return (
1882
+ <div className="content-stretch flex items-center relative shrink-0" data-name="Right">
1883
+ <ProfileDropdown />
1884
+ </div>
1885
+ );
1886
+ }
1887
+
1888
+ function Wrapper() {
1889
+ return (
1890
+ <div className="content-stretch flex items-center justify-between px-[50px] relative shrink-0 w-[1600px]" data-name="WRAPPER">
1891
+ <Logo />
1892
+ <Left />
1893
+ <Right />
1894
+ </div>
1895
+ );
1896
+ }
1897
+
1898
+ function HeaderCustomerUi() {
1899
+ return (
1900
+ <div className="absolute bg-[#1d1d1d] content-stretch flex h-[70px] items-center justify-between left-0 py-[11px] top-0 w-[1920px]" data-name="Header - Customer UI">
1901
+ <div aria-hidden="true" className="absolute border-[#262626] border-b border-solid inset-0 pointer-events-none shadow-[0px_4px_8px_0px_rgba(0,0,0,0.1)]" />
1902
+ <Wrapper />
1903
+ </div>
1904
+ );
1905
+ }
1906
+
1907
+ export default function Dashboard() {
1908
+ return (
1909
+ <div className="bg-[#181818] relative size-full" data-name="Dashboard">
1910
+ <MainContent />
1911
+ <HeaderCustomerUi />
1912
+ </div>
1913
+ );
1914
+ }