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,1088 @@
1
+ import svgPaths from "./svg-liuy2nykz3";
2
+
3
+ function SpacerTestio() {
4
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
5
+ }
6
+
7
+ function SpacerTestio1() {
8
+ return (
9
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
10
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
11
+ </div>
12
+ );
13
+ }
14
+
15
+ function FormLabel1() {
16
+ return (
17
+ <div className="col-[1] content-stretch flex items-start justify-self-start pt-[10px] relative row-[1] self-start shrink-0" data-name="form label">
18
+ <p className="font-['Source_Sans_Pro:SemiBold',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#888] text-[12px] uppercase">Form label</p>
19
+ </div>
20
+ );
21
+ }
22
+
23
+ function InputField() {
24
+ return (
25
+ <div className="bg-[#181818] col-[2] h-[40px] justify-self-stretch relative rounded-[10px] row-[1] shrink-0" data-name="Input field">
26
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
27
+ <div className="flex flex-row items-center size-full">
28
+ <div className="content-stretch flex gap-[9px] items-center px-[20px] py-[5px] relative size-full">
29
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap">Input field</p>
30
+ </div>
31
+ </div>
32
+ </div>
33
+ );
34
+ }
35
+
36
+ function FormGrid() {
37
+ return (
38
+ <div className="gap-[20px] grid grid-cols-[__175px_minmax(0,_1fr)] grid-rows-[_40px] relative rounded-[15px] shrink-0 w-full" data-name="Form grid">
39
+ <FormLabel1 />
40
+ <InputField />
41
+ </div>
42
+ );
43
+ }
44
+
45
+ function SpacerTestio2() {
46
+ return (
47
+ <div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
48
+ <div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
49
+ </div>
50
+ );
51
+ }
52
+
53
+ function FormLabel() {
54
+ return (
55
+ <div className="content-stretch flex flex-col items-start max-w-[730px] relative shrink-0 w-full" data-name="Form label">
56
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Form groups</p>
57
+ <SpacerTestio />
58
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Horizonal form groups</p>
59
+ <SpacerTestio1 />
60
+ <FormGrid />
61
+ <SpacerTestio2 />
62
+ </div>
63
+ );
64
+ }
65
+
66
+ function SpacerTestio3() {
67
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
68
+ }
69
+
70
+ function SpacerTestio4() {
71
+ return (
72
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
73
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
74
+ </div>
75
+ );
76
+ }
77
+
78
+ function FormLabel3() {
79
+ return (
80
+ <div className="content-stretch flex items-start pt-[10px] relative shrink-0 w-[1936px]" data-name="form label">
81
+ <p className="font-['Source_Sans_Pro:SemiBold',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#888] text-[12px] uppercase">Form label</p>
82
+ </div>
83
+ );
84
+ }
85
+
86
+ function SpacerTestio5() {
87
+ return (
88
+ <div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
89
+ <div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
90
+ </div>
91
+ );
92
+ }
93
+
94
+ function FormLabel2() {
95
+ return (
96
+ <div className="content-stretch flex flex-col items-start max-w-[730px] relative shrink-0 w-full" data-name="Form label">
97
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Form label</p>
98
+ <SpacerTestio3 />
99
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Label for form groups and elements</p>
100
+ <SpacerTestio4 />
101
+ <FormLabel3 />
102
+ <SpacerTestio5 />
103
+ </div>
104
+ );
105
+ }
106
+
107
+ function SpacerTestio6() {
108
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
109
+ }
110
+
111
+ function SpacerTestio7() {
112
+ return (
113
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
114
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
115
+ </div>
116
+ );
117
+ }
118
+
119
+ function InputField1() {
120
+ return (
121
+ <div className="bg-[#181818] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="Input field">
122
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
123
+ <div className="flex flex-row items-center size-full">
124
+ <div className="content-stretch flex gap-[9px] items-center px-[20px] py-[5px] relative size-full">
125
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Italic',sans-serif] italic leading-[30px] min-h-px min-w-px relative text-[#595959] text-[16px] whitespace-pre-wrap">Placeholder</p>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ );
130
+ }
131
+
132
+ function SpacerTestio8() {
133
+ return (
134
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
135
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
136
+ </div>
137
+ );
138
+ }
139
+
140
+ function InputField2() {
141
+ return (
142
+ <div className="bg-[#181818] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="Input field">
143
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
144
+ <div className="flex flex-row items-center size-full">
145
+ <div className="content-stretch flex gap-[9px] items-center px-[20px] py-[5px] relative size-full">
146
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap">Filled input</p>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ );
151
+ }
152
+
153
+ function SpacerTestio9() {
154
+ return (
155
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
156
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
157
+ </div>
158
+ );
159
+ }
160
+
161
+ function InputField3() {
162
+ return (
163
+ <div className="bg-[#181818] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="Input field">
164
+ <div aria-hidden="true" className="absolute border border-[#ff3131] border-solid inset-0 pointer-events-none rounded-[10px]" />
165
+ <div className="flex flex-row items-center size-full">
166
+ <div className="content-stretch flex gap-[9px] items-center px-[20px] py-[5px] relative size-full">
167
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[#ff3131] text-[16px] whitespace-pre-wrap">Input with error</p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ );
172
+ }
173
+
174
+ function SpacerTestio10() {
175
+ return (
176
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
177
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
178
+ </div>
179
+ );
180
+ }
181
+
182
+ function InputField4() {
183
+ return (
184
+ <div className="bg-[#262626] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="Input field">
185
+ <div className="flex flex-row items-center size-full">
186
+ <div className="content-stretch flex gap-[9px] items-center px-[20px] py-[5px] relative size-full">
187
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap">Readonly field</p>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ );
192
+ }
193
+
194
+ function SpacerTestio11() {
195
+ return (
196
+ <div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
197
+ <div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
198
+ </div>
199
+ );
200
+ }
201
+
202
+ function Inputs() {
203
+ return (
204
+ <div className="content-stretch flex flex-col items-start max-w-[730px] relative shrink-0 w-full" data-name="INPUTS">
205
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Input fields</p>
206
+ <SpacerTestio6 />
207
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Input field in different states</p>
208
+ <SpacerTestio7 />
209
+ <InputField1 />
210
+ <SpacerTestio8 />
211
+ <InputField2 />
212
+ <SpacerTestio9 />
213
+ <InputField3 />
214
+ <SpacerTestio10 />
215
+ <InputField4 />
216
+ <SpacerTestio11 />
217
+ </div>
218
+ );
219
+ }
220
+
221
+ function SpacerTestio12() {
222
+ return (
223
+ <div className="relative shrink-0 size-[50px]" data-name="spacer-testio">
224
+ <div className="absolute inset-[0_80%_80%_0]" data-name="spacer" />
225
+ </div>
226
+ );
227
+ }
228
+
229
+ function SpacerTestio13() {
230
+ return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
231
+ }
232
+
233
+ function SpacerTestio14() {
234
+ return (
235
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
236
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
237
+ </div>
238
+ );
239
+ }
240
+
241
+ function IconCaretDown() {
242
+ return (
243
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
244
+ <div className="absolute inset-[0_-0.23%_0_0]">
245
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
246
+ <g id="icon-caret-down">
247
+ <g id="Rectangle 1171" />
248
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, #78EAC1)" id="Union" />
249
+ </g>
250
+ </svg>
251
+ </div>
252
+ </div>
253
+ );
254
+ }
255
+
256
+ function Btn() {
257
+ return (
258
+ <div className="content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
259
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
260
+ <IconCaretDown />
261
+ </div>
262
+ );
263
+ }
264
+
265
+ function FormSelect() {
266
+ return (
267
+ <div className="bg-[#262626] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
268
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
269
+ <div className="flex flex-row items-center size-full">
270
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
271
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Italic',sans-serif] italic leading-[30px] min-h-px min-w-px relative text-[#888] text-[16px] whitespace-pre-wrap z-[3]">Please select</p>
272
+ <Btn />
273
+ </div>
274
+ </div>
275
+ </div>
276
+ );
277
+ }
278
+
279
+ function SpacerTestio15() {
280
+ return (
281
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
282
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
283
+ </div>
284
+ );
285
+ }
286
+
287
+ function IconCaretDown1() {
288
+ return (
289
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
290
+ <div className="absolute inset-[0_-0.23%_0_0]">
291
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
292
+ <g id="icon-caret-down">
293
+ <g id="Rectangle 1171" />
294
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, white)" id="Union" />
295
+ </g>
296
+ </svg>
297
+ </div>
298
+ </div>
299
+ );
300
+ }
301
+
302
+ function Btn1() {
303
+ return (
304
+ <div className="bg-[#7954ff] content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
305
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
306
+ <IconCaretDown1 />
307
+ </div>
308
+ );
309
+ }
310
+
311
+ function FormSelect1() {
312
+ return (
313
+ <div className="bg-[#7954ff] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
314
+ <div className="flex flex-row items-center size-full">
315
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
316
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Italic',sans-serif] italic leading-[30px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap z-[3]">Hover</p>
317
+ <Btn1 />
318
+ </div>
319
+ </div>
320
+ </div>
321
+ );
322
+ }
323
+
324
+ function SpacerTestio16() {
325
+ return (
326
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
327
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
328
+ </div>
329
+ );
330
+ }
331
+
332
+ function IconCaretDown2() {
333
+ return (
334
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
335
+ <div className="absolute inset-[0_-0.23%_0_0]">
336
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
337
+ <g id="icon-caret-down">
338
+ <g id="Rectangle 1171" />
339
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, #78EAC1)" id="Union" />
340
+ </g>
341
+ </svg>
342
+ </div>
343
+ </div>
344
+ );
345
+ }
346
+
347
+ function Btn2() {
348
+ return (
349
+ <div className="content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
350
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
351
+ <IconCaretDown2 />
352
+ </div>
353
+ );
354
+ }
355
+
356
+ function FormSelect2() {
357
+ return (
358
+ <div className="bg-[#262626] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
359
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
360
+ <div className="flex flex-row items-center size-full">
361
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
362
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap z-[3]">Option selected</p>
363
+ <Btn2 />
364
+ </div>
365
+ </div>
366
+ </div>
367
+ );
368
+ }
369
+
370
+ function SpacerTestio17() {
371
+ return (
372
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
373
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
374
+ </div>
375
+ );
376
+ }
377
+
378
+ function IconCaretDown3() {
379
+ return (
380
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
381
+ <div className="absolute inset-[0_-0.23%_0_0]">
382
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
383
+ <g id="icon-caret-down">
384
+ <g id="Rectangle 1171" />
385
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, white)" id="Union" />
386
+ </g>
387
+ </svg>
388
+ </div>
389
+ </div>
390
+ );
391
+ }
392
+
393
+ function Btn3() {
394
+ return (
395
+ <div className="bg-[#7954ff] content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
396
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
397
+ <IconCaretDown3 />
398
+ </div>
399
+ );
400
+ }
401
+
402
+ function FormSelect3() {
403
+ return (
404
+ <div className="bg-[#7954ff] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
405
+ <div className="flex flex-row items-center size-full">
406
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
407
+ <p className="flex-[1_0_0] font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-h-px min-w-px relative text-[16px] text-white whitespace-pre-wrap z-[3]">Option selected hover</p>
408
+ <Btn3 />
409
+ </div>
410
+ </div>
411
+ </div>
412
+ );
413
+ }
414
+
415
+ function SpacerTestio18() {
416
+ return (
417
+ <div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
418
+ <div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
419
+ </div>
420
+ );
421
+ }
422
+
423
+ function SpacerTestio19() {
424
+ return (
425
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
426
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
427
+ </div>
428
+ );
429
+ }
430
+
431
+ function IconComputerWindowsLg() {
432
+ return (
433
+ <div className="h-[40px] relative shrink-0 w-[57px]" data-name="icon-computer-windows-lg">
434
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 57 40">
435
+ <g clipPath="url(#clip0_27_11576)" id="icon-computer-windows-lg">
436
+ <g id="computer-windows-lg" />
437
+ <path d="M11 7H4V9H11V7Z" fill="var(--fill-0, white)" id="Vector" />
438
+ <path d="M30 38H25V40H30V38Z" fill="var(--fill-0, white)" id="Vector_2" />
439
+ <path d={svgPaths.p187e61c0} fill="var(--fill-0, white)" id="Vector_3" />
440
+ <path d={svgPaths.p3716d780} fill="var(--fill-0, white)" id="Vector_4" />
441
+ <path d={svgPaths.p3215c000} fill="var(--fill-0, white)" id="Vector_5" />
442
+ </g>
443
+ <defs>
444
+ <clipPath id="clip0_27_11576">
445
+ <rect fill="white" height="40" width="57" />
446
+ </clipPath>
447
+ </defs>
448
+ </svg>
449
+ </div>
450
+ );
451
+ }
452
+
453
+ function IconWrapper() {
454
+ return (
455
+ <div className="content-stretch flex flex-col items-start relative shrink-0" data-name="Icon wrapper">
456
+ <IconComputerWindowsLg />
457
+ </div>
458
+ );
459
+ }
460
+
461
+ function IconChrome() {
462
+ return (
463
+ <div className="relative shrink-0 size-[20px]" data-name="icon-chrome">
464
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
465
+ <g clipPath="url(#clip0_27_8377)" id="icon-chrome">
466
+ <path d={svgPaths.p347a1500} fill="var(--fill-0, white)" id="Union" />
467
+ </g>
468
+ <defs>
469
+ <clipPath id="clip0_27_8377">
470
+ <rect fill="white" height="20" width="20" />
471
+ </clipPath>
472
+ </defs>
473
+ </svg>
474
+ </div>
475
+ );
476
+ }
477
+
478
+ function IconEdgeChromium() {
479
+ return (
480
+ <div className="relative shrink-0 size-[20px]" data-name="icon-edge-chromium">
481
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
482
+ <g clipPath="url(#clip0_27_9976)" id="icon-edge-chromium">
483
+ <g id="edge-chromium" />
484
+ <path d={svgPaths.p3075cdf0} fill="var(--fill-0, white)" id="Union" />
485
+ </g>
486
+ <defs>
487
+ <clipPath id="clip0_27_9976">
488
+ <rect fill="white" height="20" width="20" />
489
+ </clipPath>
490
+ </defs>
491
+ </svg>
492
+ </div>
493
+ );
494
+ }
495
+
496
+ function IconEdge() {
497
+ return (
498
+ <div className="h-[20px] relative shrink-0 w-[19px]" data-name="icon-edge">
499
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 19 20">
500
+ <g clipPath="url(#clip0_27_16378)" id="icon-edge">
501
+ <g id="edge" />
502
+ <path d={svgPaths.p5758100} fill="var(--fill-0, white)" id="Union" />
503
+ </g>
504
+ <defs>
505
+ <clipPath id="clip0_27_16378">
506
+ <rect fill="white" height="20" width="19" />
507
+ </clipPath>
508
+ </defs>
509
+ </svg>
510
+ </div>
511
+ );
512
+ }
513
+
514
+ function Browsers() {
515
+ return (
516
+ <div className="content-stretch flex gap-[5px] items-start relative shrink-0" data-name="Browsers">
517
+ <IconChrome />
518
+ <IconEdgeChromium />
519
+ <IconEdge />
520
+ </div>
521
+ );
522
+ }
523
+
524
+ function Info() {
525
+ return (
526
+ <div className="content-stretch flex flex-col gap-[2px] items-start relative shrink-0" data-name="INFO">
527
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Computer | Windows 11</p>
528
+ <Browsers />
529
+ </div>
530
+ );
531
+ }
532
+
533
+ function Device() {
534
+ return (
535
+ <div className="content-stretch flex gap-[10px] items-start relative shrink-0 w-full" data-name="Device">
536
+ <IconWrapper />
537
+ <Info />
538
+ </div>
539
+ );
540
+ }
541
+
542
+ function Content() {
543
+ return (
544
+ <div className="content-stretch flex flex-col items-start py-[5px] relative shrink-0 w-[205px] z-[2]" data-name="CONTENT">
545
+ <Device />
546
+ </div>
547
+ );
548
+ }
549
+
550
+ function IconCaretDown4() {
551
+ return (
552
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
553
+ <div className="absolute inset-[0_-0.23%_0_0]">
554
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
555
+ <g id="icon-caret-down">
556
+ <g id="Rectangle 1171" />
557
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, #78EAC1)" id="Union" />
558
+ </g>
559
+ </svg>
560
+ </div>
561
+ </div>
562
+ );
563
+ }
564
+
565
+ function Btn4() {
566
+ return (
567
+ <div className="content-stretch flex h-[70px] items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 w-[40px] z-[1]" data-name="Btn">
568
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
569
+ <IconCaretDown4 />
570
+ </div>
571
+ );
572
+ }
573
+
574
+ function FormSelect4() {
575
+ return (
576
+ <div className="bg-[#262626] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
577
+ <div className="flex flex-row items-center size-full">
578
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative w-full">
579
+ <Content />
580
+ <Btn4 />
581
+ </div>
582
+ </div>
583
+ </div>
584
+ );
585
+ }
586
+
587
+ function SpacerTestio20() {
588
+ return (
589
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
590
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
591
+ </div>
592
+ );
593
+ }
594
+
595
+ function IconComputerWindowsLg1() {
596
+ return (
597
+ <div className="h-[40px] relative shrink-0 w-[57px]" data-name="icon-computer-windows-lg">
598
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 57 40">
599
+ <g clipPath="url(#clip0_27_11576)" id="icon-computer-windows-lg">
600
+ <g id="computer-windows-lg" />
601
+ <path d="M11 7H4V9H11V7Z" fill="var(--fill-0, white)" id="Vector" />
602
+ <path d="M30 38H25V40H30V38Z" fill="var(--fill-0, white)" id="Vector_2" />
603
+ <path d={svgPaths.p187e61c0} fill="var(--fill-0, white)" id="Vector_3" />
604
+ <path d={svgPaths.p3716d780} fill="var(--fill-0, white)" id="Vector_4" />
605
+ <path d={svgPaths.p3215c000} fill="var(--fill-0, white)" id="Vector_5" />
606
+ </g>
607
+ <defs>
608
+ <clipPath id="clip0_27_11576">
609
+ <rect fill="white" height="40" width="57" />
610
+ </clipPath>
611
+ </defs>
612
+ </svg>
613
+ </div>
614
+ );
615
+ }
616
+
617
+ function IconWrapper1() {
618
+ return (
619
+ <div className="content-stretch flex flex-col items-start relative shrink-0" data-name="Icon wrapper">
620
+ <IconComputerWindowsLg1 />
621
+ </div>
622
+ );
623
+ }
624
+
625
+ function IconChrome1() {
626
+ return (
627
+ <div className="relative shrink-0 size-[20px]" data-name="icon-chrome">
628
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
629
+ <g clipPath="url(#clip0_27_8377)" id="icon-chrome">
630
+ <path d={svgPaths.p347a1500} fill="var(--fill-0, white)" id="Union" />
631
+ </g>
632
+ <defs>
633
+ <clipPath id="clip0_27_8377">
634
+ <rect fill="white" height="20" width="20" />
635
+ </clipPath>
636
+ </defs>
637
+ </svg>
638
+ </div>
639
+ );
640
+ }
641
+
642
+ function IconEdgeChromium1() {
643
+ return (
644
+ <div className="relative shrink-0 size-[20px]" data-name="icon-edge-chromium">
645
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
646
+ <g clipPath="url(#clip0_27_9976)" id="icon-edge-chromium">
647
+ <g id="edge-chromium" />
648
+ <path d={svgPaths.p3075cdf0} fill="var(--fill-0, white)" id="Union" />
649
+ </g>
650
+ <defs>
651
+ <clipPath id="clip0_27_9976">
652
+ <rect fill="white" height="20" width="20" />
653
+ </clipPath>
654
+ </defs>
655
+ </svg>
656
+ </div>
657
+ );
658
+ }
659
+
660
+ function IconEdge1() {
661
+ return (
662
+ <div className="h-[20px] relative shrink-0 w-[19px]" data-name="icon-edge">
663
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 19 20">
664
+ <g clipPath="url(#clip0_27_16378)" id="icon-edge">
665
+ <g id="edge" />
666
+ <path d={svgPaths.p5758100} fill="var(--fill-0, white)" id="Union" />
667
+ </g>
668
+ <defs>
669
+ <clipPath id="clip0_27_16378">
670
+ <rect fill="white" height="20" width="19" />
671
+ </clipPath>
672
+ </defs>
673
+ </svg>
674
+ </div>
675
+ );
676
+ }
677
+
678
+ function Browsers1() {
679
+ return (
680
+ <div className="content-stretch flex gap-[5px] items-start relative shrink-0" data-name="Browsers">
681
+ <IconChrome1 />
682
+ <IconEdgeChromium1 />
683
+ <IconEdge1 />
684
+ </div>
685
+ );
686
+ }
687
+
688
+ function Info1() {
689
+ return (
690
+ <div className="content-stretch flex flex-col gap-[2px] items-start relative shrink-0" data-name="INFO">
691
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[16px] not-italic relative shrink-0 text-[14px] text-white">Computer | Windows 11</p>
692
+ <Browsers1 />
693
+ </div>
694
+ );
695
+ }
696
+
697
+ function Device1() {
698
+ return (
699
+ <div className="content-stretch flex gap-[10px] items-start relative shrink-0 w-full" data-name="Device">
700
+ <IconWrapper1 />
701
+ <Info1 />
702
+ </div>
703
+ );
704
+ }
705
+
706
+ function Content1() {
707
+ return (
708
+ <div className="content-stretch flex flex-col items-start py-[5px] relative shrink-0 w-[205px] z-[3]" data-name="CONTENT">
709
+ <Device1 />
710
+ </div>
711
+ );
712
+ }
713
+
714
+ function IconCaretDown5() {
715
+ return (
716
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
717
+ <div className="absolute inset-[0_-0.23%_0_0]">
718
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
719
+ <g id="icon-caret-down">
720
+ <g id="Rectangle 1171" />
721
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, white)" id="Union" />
722
+ </g>
723
+ </svg>
724
+ </div>
725
+ </div>
726
+ );
727
+ }
728
+
729
+ function Btn5() {
730
+ return (
731
+ <div className="bg-[#7954ff] content-stretch flex h-[70px] items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 w-[40px] z-[1]" data-name="Btn">
732
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
733
+ <IconCaretDown5 />
734
+ </div>
735
+ );
736
+ }
737
+
738
+ function FormSelect5() {
739
+ return (
740
+ <div className="bg-[#7954ff] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
741
+ <div className="flex flex-row items-center size-full">
742
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative w-full">
743
+ <Content1 />
744
+ <Btn5 />
745
+ </div>
746
+ </div>
747
+ </div>
748
+ );
749
+ }
750
+
751
+ function SpacerTestio21() {
752
+ return (
753
+ <div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
754
+ <div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
755
+ </div>
756
+ );
757
+ }
758
+
759
+ function SpacerTestio22() {
760
+ return (
761
+ <div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
762
+ <div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
763
+ </div>
764
+ );
765
+ }
766
+
767
+ function Content2() {
768
+ return (
769
+ <div className="content-stretch flex h-[20px] items-center justify-center pl-[8px] pr-[2px] py-[2px] relative shrink-0" data-name="CONTENT">
770
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#1d1d1d] text-[11px]">Tag removable</p>
771
+ </div>
772
+ );
773
+ }
774
+
775
+ function IconCrossThick() {
776
+ return (
777
+ <div className="h-[16px] relative shrink-0 w-[10px]" data-name="icon-cross-thick">
778
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 16">
779
+ <g id="icon-cross-thick">
780
+ <path d={svgPaths.paa65200} fill="var(--fill-0, #236A84)" id="Union" />
781
+ </g>
782
+ </svg>
783
+ </div>
784
+ );
785
+ }
786
+
787
+ function IconWrapper2() {
788
+ return (
789
+ <div className="content-stretch flex items-center relative shrink-0" data-name="icon wrapper">
790
+ <IconCrossThick />
791
+ </div>
792
+ );
793
+ }
794
+
795
+ function ButtonXs() {
796
+ return (
797
+ <div className="content-stretch flex gap-[10px] h-full items-center justify-center p-[5px] relative rounded-br-[5px] rounded-tr-[5px] shrink-0 w-[18px]" data-name="Button-xs">
798
+ <IconWrapper2 />
799
+ </div>
800
+ );
801
+ }
802
+
803
+ function Tag() {
804
+ return (
805
+ <div className="bg-white content-stretch flex h-[20px] items-center justify-center relative rounded-[5px] shrink-0" data-name="Tag">
806
+ <Content2 />
807
+ <ButtonXs />
808
+ </div>
809
+ );
810
+ }
811
+
812
+ function Content3() {
813
+ return (
814
+ <div className="content-stretch flex h-[20px] items-center justify-center pl-[8px] pr-[2px] py-[2px] relative shrink-0" data-name="CONTENT">
815
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#1d1d1d] text-[11px]">Tag removable</p>
816
+ </div>
817
+ );
818
+ }
819
+
820
+ function IconCrossThick1() {
821
+ return (
822
+ <div className="h-[16px] relative shrink-0 w-[10px]" data-name="icon-cross-thick">
823
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 16">
824
+ <g id="icon-cross-thick">
825
+ <path d={svgPaths.paa65200} fill="var(--fill-0, #236A84)" id="Union" />
826
+ </g>
827
+ </svg>
828
+ </div>
829
+ );
830
+ }
831
+
832
+ function IconWrapper3() {
833
+ return (
834
+ <div className="content-stretch flex items-center relative shrink-0" data-name="icon wrapper">
835
+ <IconCrossThick1 />
836
+ </div>
837
+ );
838
+ }
839
+
840
+ function ButtonXs1() {
841
+ return (
842
+ <div className="content-stretch flex gap-[10px] h-full items-center justify-center p-[5px] relative rounded-br-[5px] rounded-tr-[5px] shrink-0 w-[18px]" data-name="Button-xs">
843
+ <IconWrapper3 />
844
+ </div>
845
+ );
846
+ }
847
+
848
+ function Tag1() {
849
+ return (
850
+ <div className="bg-white content-stretch flex h-[20px] items-center justify-center relative rounded-[5px] shrink-0" data-name="Tag">
851
+ <Content3 />
852
+ <ButtonXs1 />
853
+ </div>
854
+ );
855
+ }
856
+
857
+ function Items() {
858
+ return (
859
+ <div className="content-stretch flex gap-[5px] items-center relative shrink-0 z-[3]" data-name="ITEMS">
860
+ <Tag />
861
+ <Tag1 />
862
+ </div>
863
+ );
864
+ }
865
+
866
+ function IconCaretDown6() {
867
+ return (
868
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
869
+ <div className="absolute inset-[0_-0.23%_0_0]">
870
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
871
+ <g id="icon-caret-down">
872
+ <g id="Rectangle 1171" />
873
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, #78EAC1)" id="Union" />
874
+ </g>
875
+ </svg>
876
+ </div>
877
+ </div>
878
+ );
879
+ }
880
+
881
+ function Btn6() {
882
+ return (
883
+ <div className="content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
884
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
885
+ <IconCaretDown6 />
886
+ </div>
887
+ );
888
+ }
889
+
890
+ function FormSelect6() {
891
+ return (
892
+ <div className="bg-[#262626] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
893
+ <div aria-hidden="true" className="absolute border border-[#2e2e2e] border-solid inset-0 pointer-events-none rounded-[10px]" />
894
+ <div className="flex flex-row items-center size-full">
895
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
896
+ <Items />
897
+ <Btn6 />
898
+ </div>
899
+ </div>
900
+ </div>
901
+ );
902
+ }
903
+
904
+ function SpacerTestio23() {
905
+ return (
906
+ <div className="relative shrink-0 size-[15px]" data-name="spacer-testio">
907
+ <div className="absolute inset-[0_0_33.33%_0]" data-name="spacer" />
908
+ </div>
909
+ );
910
+ }
911
+
912
+ function Content4() {
913
+ return (
914
+ <div className="content-stretch flex h-[20px] items-center justify-center pl-[8px] pr-[2px] py-[2px] relative shrink-0" data-name="CONTENT">
915
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#1d1d1d] text-[11px]">Tag removable</p>
916
+ </div>
917
+ );
918
+ }
919
+
920
+ function IconCrossThick2() {
921
+ return (
922
+ <div className="h-[16px] relative shrink-0 w-[10px]" data-name="icon-cross-thick">
923
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 16">
924
+ <g id="icon-cross-thick">
925
+ <path d={svgPaths.paa65200} fill="var(--fill-0, #236A84)" id="Union" />
926
+ </g>
927
+ </svg>
928
+ </div>
929
+ );
930
+ }
931
+
932
+ function IconWrapper4() {
933
+ return (
934
+ <div className="content-stretch flex items-center relative shrink-0" data-name="icon wrapper">
935
+ <IconCrossThick2 />
936
+ </div>
937
+ );
938
+ }
939
+
940
+ function ButtonXs2() {
941
+ return (
942
+ <div className="content-stretch flex gap-[10px] h-full items-center justify-center p-[5px] relative rounded-br-[5px] rounded-tr-[5px] shrink-0 w-[18px]" data-name="Button-xs">
943
+ <IconWrapper4 />
944
+ </div>
945
+ );
946
+ }
947
+
948
+ function Tag2() {
949
+ return (
950
+ <div className="bg-white content-stretch flex h-[20px] items-center justify-center relative rounded-[5px] shrink-0" data-name="Tag">
951
+ <Content4 />
952
+ <ButtonXs2 />
953
+ </div>
954
+ );
955
+ }
956
+
957
+ function Content5() {
958
+ return (
959
+ <div className="content-stretch flex h-[20px] items-center justify-center pl-[8px] pr-[2px] py-[2px] relative shrink-0" data-name="CONTENT">
960
+ <p className="font-['Source_Sans_Pro:Regular',sans-serif] leading-[13px] not-italic relative shrink-0 text-[#1d1d1d] text-[11px]">Tag removable</p>
961
+ </div>
962
+ );
963
+ }
964
+
965
+ function IconCrossThick3() {
966
+ return (
967
+ <div className="h-[16px] relative shrink-0 w-[10px]" data-name="icon-cross-thick">
968
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 10 16">
969
+ <g id="icon-cross-thick">
970
+ <path d={svgPaths.paa65200} fill="var(--fill-0, #236A84)" id="Union" />
971
+ </g>
972
+ </svg>
973
+ </div>
974
+ );
975
+ }
976
+
977
+ function IconWrapper5() {
978
+ return (
979
+ <div className="content-stretch flex items-center relative shrink-0" data-name="icon wrapper">
980
+ <IconCrossThick3 />
981
+ </div>
982
+ );
983
+ }
984
+
985
+ function ButtonXs3() {
986
+ return (
987
+ <div className="content-stretch flex gap-[10px] h-full items-center justify-center p-[5px] relative rounded-br-[5px] rounded-tr-[5px] shrink-0 w-[18px]" data-name="Button-xs">
988
+ <IconWrapper5 />
989
+ </div>
990
+ );
991
+ }
992
+
993
+ function Tag3() {
994
+ return (
995
+ <div className="bg-white content-stretch flex h-[20px] items-center justify-center relative rounded-[5px] shrink-0" data-name="Tag">
996
+ <Content5 />
997
+ <ButtonXs3 />
998
+ </div>
999
+ );
1000
+ }
1001
+
1002
+ function Items1() {
1003
+ return (
1004
+ <div className="content-stretch flex gap-[5px] items-center relative shrink-0 z-[3]" data-name="ITEMS">
1005
+ <Tag2 />
1006
+ <Tag3 />
1007
+ </div>
1008
+ );
1009
+ }
1010
+
1011
+ function IconCaretDown7() {
1012
+ return (
1013
+ <div className="h-[20px] relative shrink-0 w-[9px]" data-name="icon-caret-down">
1014
+ <div className="absolute inset-[0_-0.23%_0_0]">
1015
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 9.02104 20">
1016
+ <g id="icon-caret-down">
1017
+ <g id="Rectangle 1171" />
1018
+ <path d={svgPaths.p2e3d1e00} fill="var(--fill-0, white)" id="Union" />
1019
+ </g>
1020
+ </svg>
1021
+ </div>
1022
+ </div>
1023
+ );
1024
+ }
1025
+
1026
+ function Btn7() {
1027
+ return (
1028
+ <div className="bg-[#7954ff] content-stretch flex items-center justify-center relative rounded-br-[10px] rounded-tr-[10px] shrink-0 size-[40px] z-[1]" data-name="Btn">
1029
+ <div aria-hidden="true" className="absolute border-[#181818] border-l border-solid inset-0 pointer-events-none rounded-br-[10px] rounded-tr-[10px]" />
1030
+ <IconCaretDown7 />
1031
+ </div>
1032
+ );
1033
+ }
1034
+
1035
+ function FormSelect7() {
1036
+ return (
1037
+ <div className="bg-[#7954ff] h-[40px] relative rounded-[10px] shrink-0 w-full" data-name="form-select">
1038
+ <div className="flex flex-row items-center size-full">
1039
+ <div className="content-stretch flex isolate items-center justify-between pl-[15px] relative size-full">
1040
+ <Items1 />
1041
+ <Btn7 />
1042
+ </div>
1043
+ </div>
1044
+ </div>
1045
+ );
1046
+ }
1047
+
1048
+ function FormLabel4() {
1049
+ return (
1050
+ <div className="content-stretch flex flex-col items-start max-w-[730px] relative shrink-0 w-full" data-name="Form label">
1051
+ <p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Selects</p>
1052
+ <SpacerTestio13 />
1053
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Select elements in different states</p>
1054
+ <SpacerTestio14 />
1055
+ <FormSelect />
1056
+ <SpacerTestio15 />
1057
+ <FormSelect1 />
1058
+ <SpacerTestio16 />
1059
+ <FormSelect2 />
1060
+ <SpacerTestio17 />
1061
+ <FormSelect3 />
1062
+ <SpacerTestio18 />
1063
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Component for selecting devices</p>
1064
+ <SpacerTestio19 />
1065
+ <FormSelect4 />
1066
+ <SpacerTestio20 />
1067
+ <FormSelect5 />
1068
+ <SpacerTestio21 />
1069
+ <p className="font-['Source_Sans_3:Regular',sans-serif] font-normal leading-[22px] min-w-full relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Multi select</p>
1070
+ <SpacerTestio22 />
1071
+ <FormSelect6 />
1072
+ <SpacerTestio23 />
1073
+ <FormSelect7 />
1074
+ </div>
1075
+ );
1076
+ }
1077
+
1078
+ export default function Forms() {
1079
+ return (
1080
+ <div className="bg-[#181818] content-stretch flex flex-col items-start p-[50px] relative size-full" data-name="Forms">
1081
+ <FormLabel />
1082
+ <FormLabel2 />
1083
+ <Inputs />
1084
+ <SpacerTestio12 />
1085
+ <FormLabel4 />
1086
+ </div>
1087
+ );
1088
+ }