@factorialco/f0-react-native 0.19.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 (310) hide show
  1. package/README.md +54 -0
  2. package/package.json +84 -0
  3. package/src/components/Activity/ActivityItem/__snapshots__/index.spec.tsx.snap +62 -0
  4. package/src/components/Activity/ActivityItem/index.spec.tsx +103 -0
  5. package/src/components/Activity/ActivityItem/index.tsx +90 -0
  6. package/src/components/Avatars/Avatar.tsx +56 -0
  7. package/src/components/Avatars/BaseAvatar/index.tsx +126 -0
  8. package/src/components/Avatars/BaseAvatar/utils.ts +73 -0
  9. package/src/components/Avatars/CompanyAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  10. package/src/components/Avatars/CompanyAvatar/index.spec.tsx +11 -0
  11. package/src/components/Avatars/CompanyAvatar/index.tsx +36 -0
  12. package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +18 -0
  13. package/src/components/Avatars/DateAvatar/index.spec.tsx +12 -0
  14. package/src/components/Avatars/DateAvatar/index.tsx +22 -0
  15. package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +37 -0
  16. package/src/components/Avatars/EmojiAvatar/index.spec.tsx +15 -0
  17. package/src/components/Avatars/EmojiAvatar/index.tsx +37 -0
  18. package/src/components/Avatars/FileAvatar/__snapshots__/index.spec.tsx.snap +261 -0
  19. package/src/components/Avatars/FileAvatar/index.spec.tsx +43 -0
  20. package/src/components/Avatars/FileAvatar/index.tsx +117 -0
  21. package/src/components/Avatars/FileAvatar/utils.ts +103 -0
  22. package/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap +256 -0
  23. package/src/components/Avatars/IconAvatar/index.spec.tsx +16 -0
  24. package/src/components/Avatars/IconAvatar/index.tsx +31 -0
  25. package/src/components/Avatars/ModuleAvatar/index.tsx +106 -0
  26. package/src/components/Avatars/ModuleAvatar/modules.ts +64 -0
  27. package/src/components/Avatars/PersonAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  28. package/src/components/Avatars/PersonAvatar/index.spec.tsx +13 -0
  29. package/src/components/Avatars/PersonAvatar/index.tsx +38 -0
  30. package/src/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  31. package/src/components/Avatars/TeamAvatar/index.spec.tsx +11 -0
  32. package/src/components/Avatars/TeamAvatar/index.tsx +36 -0
  33. package/src/components/Avatars/exports.ts +9 -0
  34. package/src/components/Avatars/types.ts +15 -0
  35. package/src/components/Badge/index.tsx +47 -0
  36. package/src/components/Button/__snapshots__/index.spec.tsx.snap +517 -0
  37. package/src/components/Button/index.spec.tsx +124 -0
  38. package/src/components/Button/index.tsx +233 -0
  39. package/src/components/Counter/__snapshots__/index.spec.tsx.snap +113 -0
  40. package/src/components/Counter/index.spec.tsx +53 -0
  41. package/src/components/Counter/index.tsx +59 -0
  42. package/src/components/ExampleComponent.tsx +22 -0
  43. package/src/components/Icon/README.md +63 -0
  44. package/src/components/Icon/__tests__/Icon.spec.tsx +35 -0
  45. package/src/components/Icon/index.tsx +85 -0
  46. package/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap +242 -0
  47. package/src/components/Navigation/PageHeader/index.spec.tsx +198 -0
  48. package/src/components/Navigation/PageHeader/index.tsx +53 -0
  49. package/src/components/OneChip/__snapshots__/index.spec.tsx.snap +366 -0
  50. package/src/components/OneChip/index.spec.tsx +69 -0
  51. package/src/components/OneChip/index.tsx +89 -0
  52. package/src/components/OnePreset/__snapshots__/index.spec.tsx.snap +149 -0
  53. package/src/components/OnePreset/index.spec.tsx +46 -0
  54. package/src/components/OnePreset/index.tsx +36 -0
  55. package/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap +292 -0
  56. package/src/components/Tags/AlertTab/index.spec.tsx +18 -0
  57. package/src/components/Tags/AlertTab/index.tsx +61 -0
  58. package/src/components/Tags/BaseTag/index.tsx +64 -0
  59. package/src/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +1081 -0
  60. package/src/components/Tags/DotTag/index.spec.tsx +14 -0
  61. package/src/components/Tags/DotTag/index.tsx +54 -0
  62. package/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap +213 -0
  63. package/src/components/Tags/RawTag/index.spec.tsx +19 -0
  64. package/src/components/Tags/RawTag/index.tsx +41 -0
  65. package/src/components/Tags/Tag.tsx +32 -0
  66. package/src/components/Tags/exports.ts +3 -0
  67. package/src/components/__tests__/ExampleComponent.spec.tsx +16 -0
  68. package/src/components/experimental/Lists/DataList/ItemContainer.tsx +74 -0
  69. package/src/components/experimental/Lists/DataList/actions/CopyAction.tsx +72 -0
  70. package/src/components/experimental/Lists/DataList/actions/GenericAction.tsx +37 -0
  71. package/src/components/experimental/Lists/DataList/index.tsx +186 -0
  72. package/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap +759 -0
  73. package/src/components/experimental/Lists/DetailsItem/index.spec.tsx +81 -0
  74. package/src/components/experimental/Lists/DetailsItem/index.tsx +68 -0
  75. package/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap +671 -0
  76. package/src/components/experimental/Lists/DetailsItemsList/index.spec.tsx +73 -0
  77. package/src/components/experimental/Lists/DetailsItemsList/index.tsx +52 -0
  78. package/src/icons/app/AcademicCap.tsx +31 -0
  79. package/src/icons/app/Add.tsx +21 -0
  80. package/src/icons/app/Ai.tsx +24 -0
  81. package/src/icons/app/Alert.tsx +16 -0
  82. package/src/icons/app/AlertCircle.tsx +19 -0
  83. package/src/icons/app/AlertCircleLine.tsx +17 -0
  84. package/src/icons/app/AlignTextCenter.tsx +21 -0
  85. package/src/icons/app/AlignTextJustify.tsx +21 -0
  86. package/src/icons/app/AlignTextLeft.tsx +21 -0
  87. package/src/icons/app/AlignTextRight.tsx +21 -0
  88. package/src/icons/app/Appearance.tsx +33 -0
  89. package/src/icons/app/Archive.tsx +21 -0
  90. package/src/icons/app/ArchiveOpen.tsx +21 -0
  91. package/src/icons/app/ArrowCycle.tsx +27 -0
  92. package/src/icons/app/ArrowDown.tsx +27 -0
  93. package/src/icons/app/ArrowLeft.tsx +21 -0
  94. package/src/icons/app/ArrowRight.tsx +21 -0
  95. package/src/icons/app/ArrowUp.tsx +21 -0
  96. package/src/icons/app/Bank.tsx +20 -0
  97. package/src/icons/app/BarGraph.tsx +21 -0
  98. package/src/icons/app/Bell.tsx +24 -0
  99. package/src/icons/app/Bold.tsx +23 -0
  100. package/src/icons/app/BookOpen.tsx +21 -0
  101. package/src/icons/app/Briefcase.tsx +18 -0
  102. package/src/icons/app/Bucket.tsx +23 -0
  103. package/src/icons/app/Building.tsx +25 -0
  104. package/src/icons/app/Bullet.tsx +19 -0
  105. package/src/icons/app/Calculator.tsx +17 -0
  106. package/src/icons/app/Calendar.tsx +21 -0
  107. package/src/icons/app/CalendarArrowDown.tsx +21 -0
  108. package/src/icons/app/CalendarArrowLeft.tsx +21 -0
  109. package/src/icons/app/CalendarArrowRight.tsx +21 -0
  110. package/src/icons/app/CameraPlus.tsx +22 -0
  111. package/src/icons/app/ChartLine.tsx +26 -0
  112. package/src/icons/app/ChartPie.tsx +25 -0
  113. package/src/icons/app/Check.tsx +21 -0
  114. package/src/icons/app/CheckCircle.tsx +21 -0
  115. package/src/icons/app/CheckCircleLine.tsx +22 -0
  116. package/src/icons/app/CheckDouble.tsx +21 -0
  117. package/src/icons/app/ChevronDown.tsx +21 -0
  118. package/src/icons/app/ChevronLeft.tsx +21 -0
  119. package/src/icons/app/ChevronRight.tsx +21 -0
  120. package/src/icons/app/ChevronUp.tsx +21 -0
  121. package/src/icons/app/Circle.tsx +16 -0
  122. package/src/icons/app/Clock.tsx +22 -0
  123. package/src/icons/app/Code.tsx +21 -0
  124. package/src/icons/app/Coffee.tsx +24 -0
  125. package/src/icons/app/Comment.tsx +19 -0
  126. package/src/icons/app/Completed.tsx +21 -0
  127. package/src/icons/app/CreditCard.tsx +21 -0
  128. package/src/icons/app/Cross.tsx +21 -0
  129. package/src/icons/app/CrossedCircle.tsx +21 -0
  130. package/src/icons/app/Crown.tsx +21 -0
  131. package/src/icons/app/Delete.tsx +21 -0
  132. package/src/icons/app/Deny.tsx +21 -0
  133. package/src/icons/app/Desktop.tsx +26 -0
  134. package/src/icons/app/DollarBill.tsx +22 -0
  135. package/src/icons/app/DottedCircle.tsx +16 -0
  136. package/src/icons/app/Download.tsx +21 -0
  137. package/src/icons/app/DropdownDefault.tsx +25 -0
  138. package/src/icons/app/DropdownOpen.tsx +25 -0
  139. package/src/icons/app/Ellipsis.tsx +36 -0
  140. package/src/icons/app/EllipsisHorizontal.tsx +18 -0
  141. package/src/icons/app/Envelope.tsx +21 -0
  142. package/src/icons/app/EnvelopeOpen.tsx +23 -0
  143. package/src/icons/app/Exit.tsx +21 -0
  144. package/src/icons/app/ExternalLink.tsx +21 -0
  145. package/src/icons/app/EyeInvisible.tsx +26 -0
  146. package/src/icons/app/EyeVisible.tsx +21 -0
  147. package/src/icons/app/FaceNegative.tsx +21 -0
  148. package/src/icons/app/FaceNeutral.tsx +21 -0
  149. package/src/icons/app/FacePositive.tsx +21 -0
  150. package/src/icons/app/FaceSuperNegative.tsx +21 -0
  151. package/src/icons/app/FaceSuperPositive.tsx +21 -0
  152. package/src/icons/app/Feed.tsx +21 -0
  153. package/src/icons/app/File.tsx +21 -0
  154. package/src/icons/app/FileFilled.tsx +21 -0
  155. package/src/icons/app/Filter.tsx +19 -0
  156. package/src/icons/app/Flag.tsx +21 -0
  157. package/src/icons/app/Folder.tsx +19 -0
  158. package/src/icons/app/Folders.tsx +24 -0
  159. package/src/icons/app/Globe.tsx +26 -0
  160. package/src/icons/app/Graph.tsx +26 -0
  161. package/src/icons/app/Handshake.tsx +29 -0
  162. package/src/icons/app/Heading1.tsx +21 -0
  163. package/src/icons/app/Heading2.tsx +21 -0
  164. package/src/icons/app/Heading3.tsx +21 -0
  165. package/src/icons/app/Heart.tsx +21 -0
  166. package/src/icons/app/HoldHeart.tsx +21 -0
  167. package/src/icons/app/Home.tsx +20 -0
  168. package/src/icons/app/Hub.tsx +51 -0
  169. package/src/icons/app/Image.tsx +21 -0
  170. package/src/icons/app/InProgressTask.tsx +17 -0
  171. package/src/icons/app/Inbox.tsx +26 -0
  172. package/src/icons/app/Info.tsx +21 -0
  173. package/src/icons/app/InfoCircle.tsx +21 -0
  174. package/src/icons/app/InfoCircleLine.tsx +28 -0
  175. package/src/icons/app/Italic.tsx +21 -0
  176. package/src/icons/app/Kanban.tsx +21 -0
  177. package/src/icons/app/Laptop.tsx +20 -0
  178. package/src/icons/app/LayersFront.tsx +26 -0
  179. package/src/icons/app/Lightbulb.tsx +26 -0
  180. package/src/icons/app/Link.tsx +25 -0
  181. package/src/icons/app/LinkRemove.tsx +20 -0
  182. package/src/icons/app/List.tsx +25 -0
  183. package/src/icons/app/LockLocked.tsx +21 -0
  184. package/src/icons/app/LockUnlocked.tsx +21 -0
  185. package/src/icons/app/LogoAvatar.tsx +23 -0
  186. package/src/icons/app/LogoEruditai.tsx +19 -0
  187. package/src/icons/app/LogoTravelperk.tsx +27 -0
  188. package/src/icons/app/Masonry.tsx +19 -0
  189. package/src/icons/app/Maximize.tsx +21 -0
  190. package/src/icons/app/Megaphone.tsx +21 -0
  191. package/src/icons/app/Menu.tsx +21 -0
  192. package/src/icons/app/MessageFrown.tsx +25 -0
  193. package/src/icons/app/MessageHeart.tsx +25 -0
  194. package/src/icons/app/Messages.tsx +21 -0
  195. package/src/icons/app/Microphone.tsx +26 -0
  196. package/src/icons/app/MicrophoneNegative.tsx +26 -0
  197. package/src/icons/app/Minimize.tsx +21 -0
  198. package/src/icons/app/Minus.tsx +21 -0
  199. package/src/icons/app/Mobile.tsx +21 -0
  200. package/src/icons/app/Money.tsx +26 -0
  201. package/src/icons/app/MoneyBag.tsx +24 -0
  202. package/src/icons/app/MoveDown.tsx +44 -0
  203. package/src/icons/app/MoveTop.tsx +34 -0
  204. package/src/icons/app/MoveUp.tsx +42 -0
  205. package/src/icons/app/Office.tsx +31 -0
  206. package/src/icons/app/OlList.tsx +21 -0
  207. package/src/icons/app/PalmTree.tsx +20 -0
  208. package/src/icons/app/Paperclip.tsx +20 -0
  209. package/src/icons/app/PartiallyCompleted.tsx +21 -0
  210. package/src/icons/app/PauseCircle.tsx +21 -0
  211. package/src/icons/app/Pencil.tsx +21 -0
  212. package/src/icons/app/People.tsx +27 -0
  213. package/src/icons/app/Person.tsx +22 -0
  214. package/src/icons/app/Phone.tsx +20 -0
  215. package/src/icons/app/Pin.tsx +22 -0
  216. package/src/icons/app/PixBrazil.tsx +19 -0
  217. package/src/icons/app/Placeholder.tsx +21 -0
  218. package/src/icons/app/Plane.tsx +21 -0
  219. package/src/icons/app/Plus.tsx +21 -0
  220. package/src/icons/app/Present.tsx +31 -0
  221. package/src/icons/app/Printer.tsx +26 -0
  222. package/src/icons/app/Proyector.tsx +22 -0
  223. package/src/icons/app/Question.tsx +22 -0
  224. package/src/icons/app/Quote.tsx +21 -0
  225. package/src/icons/app/Reaction.tsx +32 -0
  226. package/src/icons/app/Receipt.tsx +20 -0
  227. package/src/icons/app/Record.tsx +17 -0
  228. package/src/icons/app/RemoveFavorite.tsx +21 -0
  229. package/src/icons/app/Replace.tsx +21 -0
  230. package/src/icons/app/Reset.tsx +27 -0
  231. package/src/icons/app/Rocket.tsx +26 -0
  232. package/src/icons/app/Salad.tsx +21 -0
  233. package/src/icons/app/Save.tsx +27 -0
  234. package/src/icons/app/Schedule.tsx +32 -0
  235. package/src/icons/app/Search.tsx +17 -0
  236. package/src/icons/app/SearchPerson.tsx +24 -0
  237. package/src/icons/app/Settings.tsx +20 -0
  238. package/src/icons/app/Share.tsx +27 -0
  239. package/src/icons/app/Sliders.tsx +22 -0
  240. package/src/icons/app/SolidPause.tsx +19 -0
  241. package/src/icons/app/SolidPlay.tsx +19 -0
  242. package/src/icons/app/SolidStop.tsx +19 -0
  243. package/src/icons/app/Sort.tsx +21 -0
  244. package/src/icons/app/Sparkles.tsx +25 -0
  245. package/src/icons/app/Spinner.tsx +20 -0
  246. package/src/icons/app/Split.tsx +21 -0
  247. package/src/icons/app/Star.tsx +21 -0
  248. package/src/icons/app/StarFilled.tsx +19 -0
  249. package/src/icons/app/Strikethrough.tsx +21 -0
  250. package/src/icons/app/Suitcase.tsx +22 -0
  251. package/src/icons/app/Table.tsx +21 -0
  252. package/src/icons/app/Target.tsx +31 -0
  253. package/src/icons/app/TextSize.tsx +21 -0
  254. package/src/icons/app/Timer.tsx +27 -0
  255. package/src/icons/app/Underline.tsx +26 -0
  256. package/src/icons/app/Upload.tsx +21 -0
  257. package/src/icons/app/Video.tsx +23 -0
  258. package/src/icons/app/VideoRecorder.tsx +31 -0
  259. package/src/icons/app/VideoRecorderNegative.tsx +22 -0
  260. package/src/icons/app/Wallet.tsx +26 -0
  261. package/src/icons/app/Warning.tsx +21 -0
  262. package/src/icons/app/WhatsappChat.tsx +23 -0
  263. package/src/icons/app/Windows.tsx +21 -0
  264. package/src/icons/app/index.ts +186 -0
  265. package/src/icons/index.ts +5 -0
  266. package/src/icons/modules/Benefits.tsx +25 -0
  267. package/src/icons/modules/Calendar.tsx +21 -0
  268. package/src/icons/modules/Cards.tsx +25 -0
  269. package/src/icons/modules/ClockIn.tsx +21 -0
  270. package/src/icons/modules/Discover.tsx +25 -0
  271. package/src/icons/modules/Documents.tsx +19 -0
  272. package/src/icons/modules/Engagement.tsx +21 -0
  273. package/src/icons/modules/Finance.tsx +21 -0
  274. package/src/icons/modules/Goals.tsx +19 -0
  275. package/src/icons/modules/Home.tsx +19 -0
  276. package/src/icons/modules/Hub.tsx +20 -0
  277. package/src/icons/modules/Inbox.tsx +19 -0
  278. package/src/icons/modules/Kudos.tsx +19 -0
  279. package/src/icons/modules/MyDocuments.tsx +21 -0
  280. package/src/icons/modules/Organization.tsx +19 -0
  281. package/src/icons/modules/Overviews.tsx +23 -0
  282. package/src/icons/modules/Payroll.tsx +25 -0
  283. package/src/icons/modules/Performance.tsx +19 -0
  284. package/src/icons/modules/Profile.tsx +19 -0
  285. package/src/icons/modules/Projects.tsx +21 -0
  286. package/src/icons/modules/Recruitment.tsx +21 -0
  287. package/src/icons/modules/Reports.tsx +21 -0
  288. package/src/icons/modules/Sales.tsx +27 -0
  289. package/src/icons/modules/Settings.tsx +21 -0
  290. package/src/icons/modules/Shifts.tsx +27 -0
  291. package/src/icons/modules/Social.tsx +21 -0
  292. package/src/icons/modules/Software.tsx +19 -0
  293. package/src/icons/modules/Spaces.tsx +21 -0
  294. package/src/icons/modules/Spending.tsx +21 -0
  295. package/src/icons/modules/Tasks.tsx +21 -0
  296. package/src/icons/modules/TimeOff.tsx +21 -0
  297. package/src/icons/modules/TimeTracking.tsx +25 -0
  298. package/src/icons/modules/Trainings.tsx +19 -0
  299. package/src/icons/modules/Treasury.tsx +19 -0
  300. package/src/icons/modules/Workflows.tsx +19 -0
  301. package/src/icons/modules/index.ts +35 -0
  302. package/src/icons/types.ts +9 -0
  303. package/src/index.ts +18 -0
  304. package/src/lib/date.ts +102 -0
  305. package/src/lib/emojis.tsx +47 -0
  306. package/src/lib/iconWithClassName.ts +17 -0
  307. package/src/lib/text.ts +31 -0
  308. package/src/lib/utils.ts +6 -0
  309. package/src/ui/avatar.tsx +113 -0
  310. package/tailwind.config.ts +19 -0
@@ -0,0 +1,1081 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`RawTag Snapshot 1`] = `
4
+ <View
5
+ className="flex items-start"
6
+ >
7
+ <View
8
+ accessibilityState={
9
+ {
10
+ "busy": undefined,
11
+ "checked": undefined,
12
+ "disabled": undefined,
13
+ "expanded": undefined,
14
+ "selected": undefined,
15
+ }
16
+ }
17
+ accessibilityValue={
18
+ {
19
+ "max": undefined,
20
+ "min": undefined,
21
+ "now": undefined,
22
+ "text": undefined,
23
+ }
24
+ }
25
+ accessible={true}
26
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
27
+ collapsable={false}
28
+ focusable={true}
29
+ onBlur={[Function]}
30
+ onClick={[Function]}
31
+ onFocus={[Function]}
32
+ onResponderGrant={[Function]}
33
+ onResponderMove={[Function]}
34
+ onResponderRelease={[Function]}
35
+ onResponderTerminate={[Function]}
36
+ onResponderTerminationRequest={[Function]}
37
+ onStartShouldSetResponder={[Function]}
38
+ >
39
+ <View
40
+ aria-hidden={true}
41
+ className="m-1 aspect-square w-2 rounded-full"
42
+ style={
43
+ {
44
+ "backgroundColor": "hsl(0 0% 100% / 0.5)",
45
+ }
46
+ }
47
+ />
48
+ <Text
49
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
50
+ >
51
+ Label
52
+ </Text>
53
+ </View>
54
+ </View>
55
+ `;
56
+
57
+ exports[`RawTag Snapshot 2`] = `
58
+ <View
59
+ className="flex items-start"
60
+ >
61
+ <View
62
+ accessibilityState={
63
+ {
64
+ "busy": undefined,
65
+ "checked": undefined,
66
+ "disabled": undefined,
67
+ "expanded": undefined,
68
+ "selected": undefined,
69
+ }
70
+ }
71
+ accessibilityValue={
72
+ {
73
+ "max": undefined,
74
+ "min": undefined,
75
+ "now": undefined,
76
+ "text": undefined,
77
+ }
78
+ }
79
+ accessible={true}
80
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
81
+ collapsable={false}
82
+ focusable={true}
83
+ onBlur={[Function]}
84
+ onClick={[Function]}
85
+ onFocus={[Function]}
86
+ onResponderGrant={[Function]}
87
+ onResponderMove={[Function]}
88
+ onResponderRelease={[Function]}
89
+ onResponderTerminate={[Function]}
90
+ onResponderTerminationRequest={[Function]}
91
+ onStartShouldSetResponder={[Function]}
92
+ >
93
+ <View
94
+ aria-hidden={true}
95
+ className="m-1 aspect-square w-2 rounded-full"
96
+ style={
97
+ {
98
+ "backgroundColor": "hsl(undefined)",
99
+ }
100
+ }
101
+ />
102
+ <Text
103
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
104
+ >
105
+ Label
106
+ </Text>
107
+ </View>
108
+ </View>
109
+ `;
110
+
111
+ exports[`RawTag Snapshot 3`] = `
112
+ <View
113
+ className="flex items-start"
114
+ >
115
+ <View
116
+ accessibilityState={
117
+ {
118
+ "busy": undefined,
119
+ "checked": undefined,
120
+ "disabled": undefined,
121
+ "expanded": undefined,
122
+ "selected": undefined,
123
+ }
124
+ }
125
+ accessibilityValue={
126
+ {
127
+ "max": undefined,
128
+ "min": undefined,
129
+ "now": undefined,
130
+ "text": undefined,
131
+ }
132
+ }
133
+ accessible={true}
134
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
135
+ collapsable={false}
136
+ focusable={true}
137
+ onBlur={[Function]}
138
+ onClick={[Function]}
139
+ onFocus={[Function]}
140
+ onResponderGrant={[Function]}
141
+ onResponderMove={[Function]}
142
+ onResponderRelease={[Function]}
143
+ onResponderTerminate={[Function]}
144
+ onResponderTerminationRequest={[Function]}
145
+ onStartShouldSetResponder={[Function]}
146
+ >
147
+ <View
148
+ aria-hidden={true}
149
+ className="m-1 aspect-square w-2 rounded-full"
150
+ style={
151
+ {
152
+ "backgroundColor": "hsl(undefined)",
153
+ }
154
+ }
155
+ />
156
+ <Text
157
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
158
+ >
159
+ Label
160
+ </Text>
161
+ </View>
162
+ </View>
163
+ `;
164
+
165
+ exports[`RawTag Snapshot 4`] = `
166
+ <View
167
+ className="flex items-start"
168
+ >
169
+ <View
170
+ accessibilityState={
171
+ {
172
+ "busy": undefined,
173
+ "checked": undefined,
174
+ "disabled": undefined,
175
+ "expanded": undefined,
176
+ "selected": undefined,
177
+ }
178
+ }
179
+ accessibilityValue={
180
+ {
181
+ "max": undefined,
182
+ "min": undefined,
183
+ "now": undefined,
184
+ "text": undefined,
185
+ }
186
+ }
187
+ accessible={true}
188
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
189
+ collapsable={false}
190
+ focusable={true}
191
+ onBlur={[Function]}
192
+ onClick={[Function]}
193
+ onFocus={[Function]}
194
+ onResponderGrant={[Function]}
195
+ onResponderMove={[Function]}
196
+ onResponderRelease={[Function]}
197
+ onResponderTerminate={[Function]}
198
+ onResponderTerminationRequest={[Function]}
199
+ onStartShouldSetResponder={[Function]}
200
+ >
201
+ <View
202
+ aria-hidden={true}
203
+ className="m-1 aspect-square w-2 rounded-full"
204
+ style={
205
+ {
206
+ "backgroundColor": "hsl(217 96% 11% / 0.61)",
207
+ }
208
+ }
209
+ />
210
+ <Text
211
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
212
+ >
213
+ Label
214
+ </Text>
215
+ </View>
216
+ </View>
217
+ `;
218
+
219
+ exports[`RawTag Snapshot 5`] = `
220
+ <View
221
+ className="flex items-start"
222
+ >
223
+ <View
224
+ accessibilityState={
225
+ {
226
+ "busy": undefined,
227
+ "checked": undefined,
228
+ "disabled": undefined,
229
+ "expanded": undefined,
230
+ "selected": undefined,
231
+ }
232
+ }
233
+ accessibilityValue={
234
+ {
235
+ "max": undefined,
236
+ "min": undefined,
237
+ "now": undefined,
238
+ "text": undefined,
239
+ }
240
+ }
241
+ accessible={true}
242
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
243
+ collapsable={false}
244
+ focusable={true}
245
+ onBlur={[Function]}
246
+ onClick={[Function]}
247
+ onFocus={[Function]}
248
+ onResponderGrant={[Function]}
249
+ onResponderMove={[Function]}
250
+ onResponderRelease={[Function]}
251
+ onResponderTerminate={[Function]}
252
+ onResponderTerminationRequest={[Function]}
253
+ onStartShouldSetResponder={[Function]}
254
+ >
255
+ <View
256
+ aria-hidden={true}
257
+ className="m-1 aspect-square w-2 rounded-full"
258
+ style={
259
+ {
260
+ "backgroundColor": "hsl(340 49% 60%)",
261
+ }
262
+ }
263
+ />
264
+ <Text
265
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
266
+ >
267
+ Label
268
+ </Text>
269
+ </View>
270
+ </View>
271
+ `;
272
+
273
+ exports[`RawTag Snapshot 6`] = `
274
+ <View
275
+ className="flex items-start"
276
+ >
277
+ <View
278
+ accessibilityState={
279
+ {
280
+ "busy": undefined,
281
+ "checked": undefined,
282
+ "disabled": undefined,
283
+ "expanded": undefined,
284
+ "selected": undefined,
285
+ }
286
+ }
287
+ accessibilityValue={
288
+ {
289
+ "max": undefined,
290
+ "min": undefined,
291
+ "now": undefined,
292
+ "text": undefined,
293
+ }
294
+ }
295
+ accessible={true}
296
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
297
+ collapsable={false}
298
+ focusable={true}
299
+ onBlur={[Function]}
300
+ onClick={[Function]}
301
+ onFocus={[Function]}
302
+ onResponderGrant={[Function]}
303
+ onResponderMove={[Function]}
304
+ onResponderRelease={[Function]}
305
+ onResponderTerminate={[Function]}
306
+ onResponderTerminationRequest={[Function]}
307
+ onStartShouldSetResponder={[Function]}
308
+ >
309
+ <View
310
+ aria-hidden={true}
311
+ className="m-1 aspect-square w-2 rounded-full"
312
+ style={
313
+ {
314
+ "backgroundColor": "hsl(331 84% 63%)",
315
+ }
316
+ }
317
+ />
318
+ <Text
319
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
320
+ >
321
+ Label
322
+ </Text>
323
+ </View>
324
+ </View>
325
+ `;
326
+
327
+ exports[`RawTag Snapshot 7`] = `
328
+ <View
329
+ className="flex items-start"
330
+ >
331
+ <View
332
+ accessibilityState={
333
+ {
334
+ "busy": undefined,
335
+ "checked": undefined,
336
+ "disabled": undefined,
337
+ "expanded": undefined,
338
+ "selected": undefined,
339
+ }
340
+ }
341
+ accessibilityValue={
342
+ {
343
+ "max": undefined,
344
+ "min": undefined,
345
+ "now": undefined,
346
+ "text": undefined,
347
+ }
348
+ }
349
+ accessible={true}
350
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
351
+ collapsable={false}
352
+ focusable={true}
353
+ onBlur={[Function]}
354
+ onClick={[Function]}
355
+ onFocus={[Function]}
356
+ onResponderGrant={[Function]}
357
+ onResponderMove={[Function]}
358
+ onResponderRelease={[Function]}
359
+ onResponderTerminate={[Function]}
360
+ onResponderTerminationRequest={[Function]}
361
+ onStartShouldSetResponder={[Function]}
362
+ >
363
+ <View
364
+ aria-hidden={true}
365
+ className="m-1 aspect-square w-2 rounded-full"
366
+ style={
367
+ {
368
+ "backgroundColor": "hsl(192 26% 54%)",
369
+ }
370
+ }
371
+ />
372
+ <Text
373
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
374
+ >
375
+ Label
376
+ </Text>
377
+ </View>
378
+ </View>
379
+ `;
380
+
381
+ exports[`RawTag Snapshot 8`] = `
382
+ <View
383
+ className="flex items-start"
384
+ >
385
+ <View
386
+ accessibilityState={
387
+ {
388
+ "busy": undefined,
389
+ "checked": undefined,
390
+ "disabled": undefined,
391
+ "expanded": undefined,
392
+ "selected": undefined,
393
+ }
394
+ }
395
+ accessibilityValue={
396
+ {
397
+ "max": undefined,
398
+ "min": undefined,
399
+ "now": undefined,
400
+ "text": undefined,
401
+ }
402
+ }
403
+ accessible={true}
404
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
405
+ collapsable={false}
406
+ focusable={true}
407
+ onBlur={[Function]}
408
+ onClick={[Function]}
409
+ onFocus={[Function]}
410
+ onResponderGrant={[Function]}
411
+ onResponderMove={[Function]}
412
+ onResponderRelease={[Function]}
413
+ onResponderTerminate={[Function]}
414
+ onResponderTerminationRequest={[Function]}
415
+ onStartShouldSetResponder={[Function]}
416
+ >
417
+ <View
418
+ aria-hidden={true}
419
+ className="m-1 aspect-square w-2 rounded-full"
420
+ style={
421
+ {
422
+ "backgroundColor": "hsl(162 44% 33%)",
423
+ }
424
+ }
425
+ />
426
+ <Text
427
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
428
+ >
429
+ Label
430
+ </Text>
431
+ </View>
432
+ </View>
433
+ `;
434
+
435
+ exports[`RawTag Snapshot 9`] = `
436
+ <View
437
+ className="flex items-start"
438
+ >
439
+ <View
440
+ accessibilityState={
441
+ {
442
+ "busy": undefined,
443
+ "checked": undefined,
444
+ "disabled": undefined,
445
+ "expanded": undefined,
446
+ "selected": undefined,
447
+ }
448
+ }
449
+ accessibilityValue={
450
+ {
451
+ "max": undefined,
452
+ "min": undefined,
453
+ "now": undefined,
454
+ "text": undefined,
455
+ }
456
+ }
457
+ accessible={true}
458
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
459
+ collapsable={false}
460
+ focusable={true}
461
+ onBlur={[Function]}
462
+ onClick={[Function]}
463
+ onFocus={[Function]}
464
+ onResponderGrant={[Function]}
465
+ onResponderMove={[Function]}
466
+ onResponderRelease={[Function]}
467
+ onResponderTerminate={[Function]}
468
+ onResponderTerminationRequest={[Function]}
469
+ onStartShouldSetResponder={[Function]}
470
+ >
471
+ <View
472
+ aria-hidden={true}
473
+ className="m-1 aspect-square w-2 rounded-full"
474
+ style={
475
+ {
476
+ "backgroundColor": "hsl(84 55% 53%)",
477
+ }
478
+ }
479
+ />
480
+ <Text
481
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
482
+ >
483
+ Label
484
+ </Text>
485
+ </View>
486
+ </View>
487
+ `;
488
+
489
+ exports[`RawTag Snapshot 10`] = `
490
+ <View
491
+ className="flex items-start"
492
+ >
493
+ <View
494
+ accessibilityState={
495
+ {
496
+ "busy": undefined,
497
+ "checked": undefined,
498
+ "disabled": undefined,
499
+ "expanded": undefined,
500
+ "selected": undefined,
501
+ }
502
+ }
503
+ accessibilityValue={
504
+ {
505
+ "max": undefined,
506
+ "min": undefined,
507
+ "now": undefined,
508
+ "text": undefined,
509
+ }
510
+ }
511
+ accessible={true}
512
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
513
+ collapsable={false}
514
+ focusable={true}
515
+ onBlur={[Function]}
516
+ onClick={[Function]}
517
+ onFocus={[Function]}
518
+ onResponderGrant={[Function]}
519
+ onResponderMove={[Function]}
520
+ onResponderRelease={[Function]}
521
+ onResponderTerminate={[Function]}
522
+ onResponderTerminationRequest={[Function]}
523
+ onStartShouldSetResponder={[Function]}
524
+ >
525
+ <View
526
+ aria-hidden={true}
527
+ className="m-1 aspect-square w-2 rounded-full"
528
+ style={
529
+ {
530
+ "backgroundColor": "hsl(239 91% 64%)",
531
+ }
532
+ }
533
+ />
534
+ <Text
535
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
536
+ >
537
+ Label
538
+ </Text>
539
+ </View>
540
+ </View>
541
+ `;
542
+
543
+ exports[`RawTag Snapshot 11`] = `
544
+ <View
545
+ className="flex items-start"
546
+ >
547
+ <View
548
+ accessibilityState={
549
+ {
550
+ "busy": undefined,
551
+ "checked": undefined,
552
+ "disabled": undefined,
553
+ "expanded": undefined,
554
+ "selected": undefined,
555
+ }
556
+ }
557
+ accessibilityValue={
558
+ {
559
+ "max": undefined,
560
+ "min": undefined,
561
+ "now": undefined,
562
+ "text": undefined,
563
+ }
564
+ }
565
+ accessible={true}
566
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
567
+ collapsable={false}
568
+ focusable={true}
569
+ onBlur={[Function]}
570
+ onClick={[Function]}
571
+ onFocus={[Function]}
572
+ onResponderGrant={[Function]}
573
+ onResponderMove={[Function]}
574
+ onResponderRelease={[Function]}
575
+ onResponderTerminate={[Function]}
576
+ onResponderTerminationRequest={[Function]}
577
+ onStartShouldSetResponder={[Function]}
578
+ >
579
+ <View
580
+ aria-hidden={true}
581
+ className="m-1 aspect-square w-2 rounded-full"
582
+ style={
583
+ {
584
+ "backgroundColor": "hsl(25 46% 53%)",
585
+ }
586
+ }
587
+ />
588
+ <Text
589
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
590
+ >
591
+ Label
592
+ </Text>
593
+ </View>
594
+ </View>
595
+ `;
596
+
597
+ exports[`RawTag Snapshot 12`] = `
598
+ <View
599
+ className="flex items-start"
600
+ >
601
+ <View
602
+ accessibilityState={
603
+ {
604
+ "busy": undefined,
605
+ "checked": undefined,
606
+ "disabled": undefined,
607
+ "expanded": undefined,
608
+ "selected": undefined,
609
+ }
610
+ }
611
+ accessibilityValue={
612
+ {
613
+ "max": undefined,
614
+ "min": undefined,
615
+ "now": undefined,
616
+ "text": undefined,
617
+ }
618
+ }
619
+ accessible={true}
620
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
621
+ collapsable={false}
622
+ focusable={true}
623
+ onBlur={[Function]}
624
+ onClick={[Function]}
625
+ onFocus={[Function]}
626
+ onResponderGrant={[Function]}
627
+ onResponderMove={[Function]}
628
+ onResponderRelease={[Function]}
629
+ onResponderTerminate={[Function]}
630
+ onResponderTerminationRequest={[Function]}
631
+ onStartShouldSetResponder={[Function]}
632
+ >
633
+ <View
634
+ aria-hidden={true}
635
+ className="m-1 aspect-square w-2 rounded-full"
636
+ style={
637
+ {
638
+ "backgroundColor": "hsl(348 80% 50%)",
639
+ }
640
+ }
641
+ />
642
+ <Text
643
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
644
+ >
645
+ Label
646
+ </Text>
647
+ </View>
648
+ </View>
649
+ `;
650
+
651
+ exports[`RawTag Snapshot 13`] = `
652
+ <View
653
+ className="flex items-start"
654
+ >
655
+ <View
656
+ accessibilityState={
657
+ {
658
+ "busy": undefined,
659
+ "checked": undefined,
660
+ "disabled": undefined,
661
+ "expanded": undefined,
662
+ "selected": undefined,
663
+ }
664
+ }
665
+ accessibilityValue={
666
+ {
667
+ "max": undefined,
668
+ "min": undefined,
669
+ "now": undefined,
670
+ "text": undefined,
671
+ }
672
+ }
673
+ accessible={true}
674
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
675
+ collapsable={false}
676
+ focusable={true}
677
+ onBlur={[Function]}
678
+ onClick={[Function]}
679
+ onFocus={[Function]}
680
+ onResponderGrant={[Function]}
681
+ onResponderMove={[Function]}
682
+ onResponderRelease={[Function]}
683
+ onResponderTerminate={[Function]}
684
+ onResponderTerminationRequest={[Function]}
685
+ onStartShouldSetResponder={[Function]}
686
+ >
687
+ <View
688
+ aria-hidden={true}
689
+ className="m-1 aspect-square w-2 rounded-full"
690
+ style={
691
+ {
692
+ "backgroundColor": "hsl(184 92% 35%)",
693
+ }
694
+ }
695
+ />
696
+ <Text
697
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
698
+ >
699
+ Label
700
+ </Text>
701
+ </View>
702
+ </View>
703
+ `;
704
+
705
+ exports[`RawTag Snapshot 14`] = `
706
+ <View
707
+ className="flex items-start"
708
+ >
709
+ <View
710
+ accessibilityState={
711
+ {
712
+ "busy": undefined,
713
+ "checked": undefined,
714
+ "disabled": undefined,
715
+ "expanded": undefined,
716
+ "selected": undefined,
717
+ }
718
+ }
719
+ accessibilityValue={
720
+ {
721
+ "max": undefined,
722
+ "min": undefined,
723
+ "now": undefined,
724
+ "text": undefined,
725
+ }
726
+ }
727
+ accessible={true}
728
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
729
+ collapsable={false}
730
+ focusable={true}
731
+ onBlur={[Function]}
732
+ onClick={[Function]}
733
+ onFocus={[Function]}
734
+ onResponderGrant={[Function]}
735
+ onResponderMove={[Function]}
736
+ onResponderRelease={[Function]}
737
+ onResponderTerminate={[Function]}
738
+ onResponderTerminationRequest={[Function]}
739
+ onStartShouldSetResponder={[Function]}
740
+ >
741
+ <View
742
+ aria-hidden={true}
743
+ className="m-1 aspect-square w-2 rounded-full"
744
+ style={
745
+ {
746
+ "backgroundColor": "hsl(25 95% 53%)",
747
+ }
748
+ }
749
+ />
750
+ <Text
751
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
752
+ >
753
+ Label
754
+ </Text>
755
+ </View>
756
+ </View>
757
+ `;
758
+
759
+ exports[`RawTag Snapshot 15`] = `
760
+ <View
761
+ className="flex items-start"
762
+ >
763
+ <View
764
+ accessibilityState={
765
+ {
766
+ "busy": undefined,
767
+ "checked": undefined,
768
+ "disabled": undefined,
769
+ "expanded": undefined,
770
+ "selected": undefined,
771
+ }
772
+ }
773
+ accessibilityValue={
774
+ {
775
+ "max": undefined,
776
+ "min": undefined,
777
+ "now": undefined,
778
+ "text": undefined,
779
+ }
780
+ }
781
+ accessible={true}
782
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
783
+ collapsable={false}
784
+ focusable={true}
785
+ onBlur={[Function]}
786
+ onClick={[Function]}
787
+ onFocus={[Function]}
788
+ onResponderGrant={[Function]}
789
+ onResponderMove={[Function]}
790
+ onResponderRelease={[Function]}
791
+ onResponderTerminate={[Function]}
792
+ onResponderTerminationRequest={[Function]}
793
+ onStartShouldSetResponder={[Function]}
794
+ >
795
+ <View
796
+ aria-hidden={true}
797
+ className="m-1 aspect-square w-2 rounded-full"
798
+ style={
799
+ {
800
+ "backgroundColor": "hsl(5 100% 65%)",
801
+ }
802
+ }
803
+ />
804
+ <Text
805
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
806
+ >
807
+ Label
808
+ </Text>
809
+ </View>
810
+ </View>
811
+ `;
812
+
813
+ exports[`RawTag Snapshot 16`] = `
814
+ <View
815
+ className="flex items-start"
816
+ >
817
+ <View
818
+ accessibilityState={
819
+ {
820
+ "busy": undefined,
821
+ "checked": undefined,
822
+ "disabled": undefined,
823
+ "expanded": undefined,
824
+ "selected": undefined,
825
+ }
826
+ }
827
+ accessibilityValue={
828
+ {
829
+ "max": undefined,
830
+ "min": undefined,
831
+ "now": undefined,
832
+ "text": undefined,
833
+ }
834
+ }
835
+ accessible={true}
836
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
837
+ collapsable={false}
838
+ focusable={true}
839
+ onBlur={[Function]}
840
+ onClick={[Function]}
841
+ onFocus={[Function]}
842
+ onResponderGrant={[Function]}
843
+ onResponderMove={[Function]}
844
+ onResponderRelease={[Function]}
845
+ onResponderTerminate={[Function]}
846
+ onResponderTerminationRequest={[Function]}
847
+ onStartShouldSetResponder={[Function]}
848
+ >
849
+ <View
850
+ aria-hidden={true}
851
+ className="m-1 aspect-square w-2 rounded-full"
852
+ style={
853
+ {
854
+ "backgroundColor": "hsl(160 84% 39%)",
855
+ }
856
+ }
857
+ />
858
+ <Text
859
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
860
+ >
861
+ Label
862
+ </Text>
863
+ </View>
864
+ </View>
865
+ `;
866
+
867
+ exports[`RawTag Snapshot 17`] = `
868
+ <View
869
+ className="flex items-start"
870
+ >
871
+ <View
872
+ accessibilityState={
873
+ {
874
+ "busy": undefined,
875
+ "checked": undefined,
876
+ "disabled": undefined,
877
+ "expanded": undefined,
878
+ "selected": undefined,
879
+ }
880
+ }
881
+ accessibilityValue={
882
+ {
883
+ "max": undefined,
884
+ "min": undefined,
885
+ "now": undefined,
886
+ "text": undefined,
887
+ }
888
+ }
889
+ accessible={true}
890
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
891
+ collapsable={false}
892
+ focusable={true}
893
+ onBlur={[Function]}
894
+ onClick={[Function]}
895
+ onFocus={[Function]}
896
+ onResponderGrant={[Function]}
897
+ onResponderMove={[Function]}
898
+ onResponderRelease={[Function]}
899
+ onResponderTerminate={[Function]}
900
+ onResponderTerminationRequest={[Function]}
901
+ onStartShouldSetResponder={[Function]}
902
+ >
903
+ <View
904
+ aria-hidden={true}
905
+ className="m-1 aspect-square w-2 rounded-full"
906
+ style={
907
+ {
908
+ "backgroundColor": "hsl(216 90% 65%)",
909
+ }
910
+ }
911
+ />
912
+ <Text
913
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
914
+ >
915
+ Label
916
+ </Text>
917
+ </View>
918
+ </View>
919
+ `;
920
+
921
+ exports[`RawTag Snapshot 18`] = `
922
+ <View
923
+ className="flex items-start"
924
+ >
925
+ <View
926
+ accessibilityState={
927
+ {
928
+ "busy": undefined,
929
+ "checked": undefined,
930
+ "disabled": undefined,
931
+ "expanded": undefined,
932
+ "selected": undefined,
933
+ }
934
+ }
935
+ accessibilityValue={
936
+ {
937
+ "max": undefined,
938
+ "min": undefined,
939
+ "now": undefined,
940
+ "text": undefined,
941
+ }
942
+ }
943
+ accessible={true}
944
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
945
+ collapsable={false}
946
+ focusable={true}
947
+ onBlur={[Function]}
948
+ onClick={[Function]}
949
+ onFocus={[Function]}
950
+ onResponderGrant={[Function]}
951
+ onResponderMove={[Function]}
952
+ onResponderRelease={[Function]}
953
+ onResponderTerminate={[Function]}
954
+ onResponderTerminationRequest={[Function]}
955
+ onStartShouldSetResponder={[Function]}
956
+ >
957
+ <View
958
+ aria-hidden={true}
959
+ className="m-1 aspect-square w-2 rounded-full"
960
+ style={
961
+ {
962
+ "backgroundColor": "hsl(38 92% 54%)",
963
+ }
964
+ }
965
+ />
966
+ <Text
967
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
968
+ >
969
+ Label
970
+ </Text>
971
+ </View>
972
+ </View>
973
+ `;
974
+
975
+ exports[`RawTag Snapshot 19`] = `
976
+ <View
977
+ className="flex items-start"
978
+ >
979
+ <View
980
+ accessibilityState={
981
+ {
982
+ "busy": undefined,
983
+ "checked": undefined,
984
+ "disabled": undefined,
985
+ "expanded": undefined,
986
+ "selected": undefined,
987
+ }
988
+ }
989
+ accessibilityValue={
990
+ {
991
+ "max": undefined,
992
+ "min": undefined,
993
+ "now": undefined,
994
+ "text": undefined,
995
+ }
996
+ }
997
+ accessible={true}
998
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
999
+ collapsable={false}
1000
+ focusable={true}
1001
+ onBlur={[Function]}
1002
+ onClick={[Function]}
1003
+ onFocus={[Function]}
1004
+ onResponderGrant={[Function]}
1005
+ onResponderMove={[Function]}
1006
+ onResponderRelease={[Function]}
1007
+ onResponderTerminate={[Function]}
1008
+ onResponderTerminationRequest={[Function]}
1009
+ onStartShouldSetResponder={[Function]}
1010
+ >
1011
+ <View
1012
+ aria-hidden={true}
1013
+ className="m-1 aspect-square w-2 rounded-full"
1014
+ style={
1015
+ {
1016
+ "backgroundColor": "hsl(258 88% 67%)",
1017
+ }
1018
+ }
1019
+ />
1020
+ <Text
1021
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
1022
+ >
1023
+ Label
1024
+ </Text>
1025
+ </View>
1026
+ </View>
1027
+ `;
1028
+
1029
+ exports[`RawTag Snapshot 20`] = `
1030
+ <View
1031
+ className="flex items-start"
1032
+ >
1033
+ <View
1034
+ accessibilityState={
1035
+ {
1036
+ "busy": undefined,
1037
+ "checked": undefined,
1038
+ "disabled": undefined,
1039
+ "expanded": undefined,
1040
+ "selected": undefined,
1041
+ }
1042
+ }
1043
+ accessibilityValue={
1044
+ {
1045
+ "max": undefined,
1046
+ "min": undefined,
1047
+ "now": undefined,
1048
+ "text": undefined,
1049
+ }
1050
+ }
1051
+ accessible={true}
1052
+ className="flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
1053
+ collapsable={false}
1054
+ focusable={true}
1055
+ onBlur={[Function]}
1056
+ onClick={[Function]}
1057
+ onFocus={[Function]}
1058
+ onResponderGrant={[Function]}
1059
+ onResponderMove={[Function]}
1060
+ onResponderRelease={[Function]}
1061
+ onResponderTerminate={[Function]}
1062
+ onResponderTerminationRequest={[Function]}
1063
+ onStartShouldSetResponder={[Function]}
1064
+ >
1065
+ <View
1066
+ aria-hidden={true}
1067
+ className="m-1 aspect-square w-2 rounded-full"
1068
+ style={
1069
+ {
1070
+ "backgroundColor": "hsl(undefined)",
1071
+ }
1072
+ }
1073
+ />
1074
+ <Text
1075
+ className="line-clamp-1 text-base font-medium text-f1-foreground"
1076
+ >
1077
+ Label
1078
+ </Text>
1079
+ </View>
1080
+ </View>
1081
+ `;