uikit-react-public 0.11.13

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 (1098) hide show
  1. package/LICENSE +9 -0
  2. package/README.md +3 -0
  3. package/dist/components/Accordion/Accordion.Heading.d.ts +8 -0
  4. package/dist/components/Accordion/Accordion.Panel.d.ts +7 -0
  5. package/dist/components/Accordion/Accordion.d.ts +22 -0
  6. package/dist/components/Accordion/__tests__/Accordion.test.d.ts +1 -0
  7. package/dist/components/Accordion/index.d.ts +2 -0
  8. package/dist/components/Alert/Alert.d.ts +27 -0
  9. package/dist/components/Alert/Alert.stories.d.ts +146 -0
  10. package/dist/components/Alert/AlertMessage.d.ts +7 -0
  11. package/dist/components/Alert/AlertTitle.d.ts +7 -0
  12. package/dist/components/Alert/__tests__/Alert.test.d.ts +1 -0
  13. package/dist/components/Alert/index.d.ts +6 -0
  14. package/dist/components/AppHeader/AppHeader.d.ts +20 -0
  15. package/dist/components/AppHeader/AppHeader.stories.d.ts +16 -0
  16. package/dist/components/AppHeader/AppHeaderBottom.d.ts +8 -0
  17. package/dist/components/AppHeader/AppHeaderNav.d.ts +7 -0
  18. package/dist/components/AppHeader/AppHeaderTop.d.ts +10 -0
  19. package/dist/components/AppHeader/__tests__/AppHeader.test.d.ts +1 -0
  20. package/dist/components/AppHeader/index.d.ts +3 -0
  21. package/dist/components/AppMenu/AppMenu.context.d.ts +14 -0
  22. package/dist/components/AppMenu/AppMenu.d.ts +19 -0
  23. package/dist/components/AppMenu/AppMenu.stories.d.ts +13 -0
  24. package/dist/components/AppMenu/AppMenuContent.d.ts +7 -0
  25. package/dist/components/AppMenu/AppMenuDivider.d.ts +7 -0
  26. package/dist/components/AppMenu/AppMenuItem.d.ts +12 -0
  27. package/dist/components/AppMenu/AppMenuTrigger.d.ts +7 -0
  28. package/dist/components/AppMenu/__tests__/AppMenu.test.d.ts +0 -0
  29. package/dist/components/AppMenu/index.d.ts +2 -0
  30. package/dist/components/Avatar/Avatar.d.ts +13 -0
  31. package/dist/components/Avatar/Avatar.stories.d.ts +11 -0
  32. package/dist/components/Avatar/__tests__/Avatar.test.d.ts +1 -0
  33. package/dist/components/Avatar/index.d.ts +2 -0
  34. package/dist/components/Avatar/utils/extractInitials.d.ts +2 -0
  35. package/dist/components/Avatar/utils/extractInitials.test.d.ts +1 -0
  36. package/dist/components/Blanket/Blanket.d.ts +8 -0
  37. package/dist/components/Blanket/Blanket.stories.d.ts +14 -0
  38. package/dist/components/Blanket/__tests__/Blanket.test.d.ts +0 -0
  39. package/dist/components/Blanket/index.d.ts +2 -0
  40. package/dist/components/Breadcrumbs/Breadcrumb.d.ts +8 -0
  41. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +9 -0
  42. package/dist/components/Breadcrumbs/Breadcrumbs.stories.d.ts +15 -0
  43. package/dist/components/Breadcrumbs/__tests__/Breadcrumbs.test.d.ts +1 -0
  44. package/dist/components/Breadcrumbs/index.d.ts +2 -0
  45. package/dist/components/Button/Button.d.ts +4 -0
  46. package/dist/components/Button/Button.stories.d.ts +257 -0
  47. package/dist/components/Button/Button.types.d.ts +26 -0
  48. package/dist/components/Button/__tests__/Button.test.d.ts +1 -0
  49. package/dist/components/Button/buttonPrimaryStyle.d.ts +4 -0
  50. package/dist/components/Button/buttonSecondaryStyle.d.ts +4 -0
  51. package/dist/components/Button/buttonTertiaryStyle.d.ts +4 -0
  52. package/dist/components/Button/index.d.ts +2 -0
  53. package/dist/components/Checkbox/Checkbox.d.ts +11 -0
  54. package/dist/components/Checkbox/Checkbox.stories.d.ts +25 -0
  55. package/dist/components/Checkbox/LabelledCheckbox.d.ts +14 -0
  56. package/dist/components/Checkbox/__tests__/Checkbox.test.d.ts +1 -0
  57. package/dist/components/Checkbox/index.d.ts +4 -0
  58. package/dist/components/Datepicker/Datepicker.d.ts +12 -0
  59. package/dist/components/Datepicker/Datepicker.stories.d.ts +35 -0
  60. package/dist/components/Datepicker/__tests__/Datepicker.test.d.ts +1 -0
  61. package/dist/components/Datepicker/index.d.ts +2 -0
  62. package/dist/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.d.ts +6 -0
  63. package/dist/components/Datepicker/subcomponents/CalendarGrid/index.d.ts +1 -0
  64. package/dist/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.d.ts +8 -0
  65. package/dist/components/Datepicker/subcomponents/CalendarMenu/index.d.ts +1 -0
  66. package/dist/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.d.ts +2 -0
  67. package/dist/components/Datepicker/subcomponents/ColumnHeadings/index.d.ts +1 -0
  68. package/dist/components/Datepicker/subcomponents/DateField/DateField.d.ts +7 -0
  69. package/dist/components/Datepicker/subcomponents/DateField/__tests__/DateField.test.d.ts +1 -0
  70. package/dist/components/Datepicker/subcomponents/DateField/index.d.ts +1 -0
  71. package/dist/components/Datepicker/subcomponents/Day/Day.d.ts +10 -0
  72. package/dist/components/Datepicker/subcomponents/Day/Day.stories.d.ts +13 -0
  73. package/dist/components/Datepicker/subcomponents/Day/index.d.ts +1 -0
  74. package/dist/components/Datepicker/subcomponents/MonthSelector/MonthSelector.d.ts +6 -0
  75. package/dist/components/Datepicker/subcomponents/MonthSelector/index.d.ts +1 -0
  76. package/dist/components/Datepicker/subcomponents/Native/Native.d.ts +9 -0
  77. package/dist/components/Datepicker/subcomponents/Native/index.d.ts +1 -0
  78. package/dist/components/Datepicker/subcomponents/index.d.ts +7 -0
  79. package/dist/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.d.ts +20 -0
  80. package/dist/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.d.ts +1 -0
  81. package/dist/components/Datepicker/utils/index.d.ts +2 -0
  82. package/dist/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.d.ts +20 -0
  83. package/dist/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.test.d.ts +1 -0
  84. package/dist/components/Dialog/BaseDialog.d.ts +16 -0
  85. package/dist/components/Dialog/Dialog.d.ts +23 -0
  86. package/dist/components/Dialog/Dialog.stories.d.ts +16 -0
  87. package/dist/components/Dialog/DialogBody.d.ts +7 -0
  88. package/dist/components/Dialog/DialogFooter.d.ts +12 -0
  89. package/dist/components/Dialog/DialogHeader.d.ts +11 -0
  90. package/dist/components/Dialog/index.d.ts +10 -0
  91. package/dist/components/Divider/Divider.d.ts +9 -0
  92. package/dist/components/Divider/Divider.stories.d.ts +11 -0
  93. package/dist/components/Divider/__tests__/Divider.test.d.ts +1 -0
  94. package/dist/components/Divider/index.d.ts +2 -0
  95. package/dist/components/FeedbackDialog/FeedbackDialog.d.ts +15 -0
  96. package/dist/components/FeedbackDialog/FeedbackDialog.stories.d.ts +15 -0
  97. package/dist/components/FeedbackDialog/index.d.ts +2 -0
  98. package/dist/components/Field/CharacterCount.d.ts +7 -0
  99. package/dist/components/Field/ErrorText.d.ts +6 -0
  100. package/dist/components/Field/Field.d.ts +30 -0
  101. package/dist/components/Field/Field.stories.d.ts +84 -0
  102. package/dist/components/Field/HelperText.d.ts +6 -0
  103. package/dist/components/Field/__tests__/Field.test.d.ts +1 -0
  104. package/dist/components/Field/index.d.ts +6 -0
  105. package/dist/components/Footer/Footer.d.ts +20 -0
  106. package/dist/components/Footer/Footer.stories.d.ts +14 -0
  107. package/dist/components/Footer/FooterColumn.d.ts +8 -0
  108. package/dist/components/Footer/FooterNavLink.d.ts +8 -0
  109. package/dist/components/Footer/SocialLink.d.ts +8 -0
  110. package/dist/components/Footer/__tests__/Footer.test.d.ts +1 -0
  111. package/dist/components/Footer/index.d.ts +2 -0
  112. package/dist/components/Header/Header.d.ts +16 -0
  113. package/dist/components/Header/HeaderMenu.d.ts +7 -0
  114. package/dist/components/Header/__tests__/Header.test.d.ts +1 -0
  115. package/dist/components/Header/index.d.ts +3 -0
  116. package/dist/components/HeaderDraft/HeaderBottomBreadcrumbs.d.ts +7 -0
  117. package/dist/components/HeaderDraft/HeaderBottomHeadingAndAvatar.d.ts +16 -0
  118. package/dist/components/HeaderDraft/HeaderBreadcrumb.d.ts +8 -0
  119. package/dist/components/HeaderDraft/HeaderDraft.d.ts +26 -0
  120. package/dist/components/HeaderDraft/HeaderMenu.d.ts +7 -0
  121. package/dist/components/HeaderDraft/__tests__/Header.test.d.ts +1 -0
  122. package/dist/components/HeaderDraft/index.d.ts +4 -0
  123. package/dist/components/Heading/Heading.d.ts +12 -0
  124. package/dist/components/Heading/Heading.stories.d.ts +18 -0
  125. package/dist/components/Heading/__tests__/Heading.test.d.ts +1 -0
  126. package/dist/components/Heading/index.d.ts +2 -0
  127. package/dist/components/Icon/BaseIcon.d.ts +13 -0
  128. package/dist/components/Icon/Icon.d.ts +16 -0
  129. package/dist/components/Icon/Icon.stories.d.ts +5 -0
  130. package/dist/components/Icon/__tests__/Icon.test.d.ts +1 -0
  131. package/dist/components/Icon/index.d.ts +2 -0
  132. package/dist/components/Icon/svgImports.d.ts +882 -0
  133. package/dist/components/Icon/svgs/ActivitySvg.d.ts +4 -0
  134. package/dist/components/Icon/svgs/AirplaySvg.d.ts +4 -0
  135. package/dist/components/Icon/svgs/AlertCircleSvg.d.ts +4 -0
  136. package/dist/components/Icon/svgs/AlertOctagonSvg.d.ts +4 -0
  137. package/dist/components/Icon/svgs/AlertTriangleSvg.d.ts +4 -0
  138. package/dist/components/Icon/svgs/AlignCenterSvg.d.ts +4 -0
  139. package/dist/components/Icon/svgs/AlignJustifySvg.d.ts +4 -0
  140. package/dist/components/Icon/svgs/AlignLeftSvg.d.ts +4 -0
  141. package/dist/components/Icon/svgs/AlignRightSvg.d.ts +4 -0
  142. package/dist/components/Icon/svgs/AnchorSvg.d.ts +4 -0
  143. package/dist/components/Icon/svgs/ApertureSvg.d.ts +4 -0
  144. package/dist/components/Icon/svgs/ArchiveSvg.d.ts +4 -0
  145. package/dist/components/Icon/svgs/ArrowDownCircleSvg.d.ts +4 -0
  146. package/dist/components/Icon/svgs/ArrowDownLeftSvg.d.ts +4 -0
  147. package/dist/components/Icon/svgs/ArrowDownRightSvg.d.ts +4 -0
  148. package/dist/components/Icon/svgs/ArrowDownSvg.d.ts +4 -0
  149. package/dist/components/Icon/svgs/ArrowLeftCircleSvg.d.ts +4 -0
  150. package/dist/components/Icon/svgs/ArrowLeftSvg.d.ts +4 -0
  151. package/dist/components/Icon/svgs/ArrowRightCircleSvg.d.ts +4 -0
  152. package/dist/components/Icon/svgs/ArrowRightSvg.d.ts +4 -0
  153. package/dist/components/Icon/svgs/ArrowUpCircleSvg.d.ts +4 -0
  154. package/dist/components/Icon/svgs/ArrowUpLeftSvg.d.ts +4 -0
  155. package/dist/components/Icon/svgs/ArrowUpRightSvg.d.ts +4 -0
  156. package/dist/components/Icon/svgs/ArrowUpSvg.d.ts +4 -0
  157. package/dist/components/Icon/svgs/AtSignSvg.d.ts +4 -0
  158. package/dist/components/Icon/svgs/AvatarSvg.d.ts +4 -0
  159. package/dist/components/Icon/svgs/AwardSvg.d.ts +4 -0
  160. package/dist/components/Icon/svgs/BarChart2Svg.d.ts +4 -0
  161. package/dist/components/Icon/svgs/BarChartSvg.d.ts +4 -0
  162. package/dist/components/Icon/svgs/BatteryChargingSvg.d.ts +4 -0
  163. package/dist/components/Icon/svgs/BatterySvg.d.ts +4 -0
  164. package/dist/components/Icon/svgs/BellOffSvg.d.ts +4 -0
  165. package/dist/components/Icon/svgs/BellSvg.d.ts +4 -0
  166. package/dist/components/Icon/svgs/BluetoothSvg.d.ts +4 -0
  167. package/dist/components/Icon/svgs/BoldSvg.d.ts +4 -0
  168. package/dist/components/Icon/svgs/BookOpenSvg.d.ts +4 -0
  169. package/dist/components/Icon/svgs/BookSvg.d.ts +4 -0
  170. package/dist/components/Icon/svgs/BookmarkSvg.d.ts +4 -0
  171. package/dist/components/Icon/svgs/BoxSvg.d.ts +4 -0
  172. package/dist/components/Icon/svgs/BriefcaseSvg.d.ts +4 -0
  173. package/dist/components/Icon/svgs/CalendarSvg.d.ts +4 -0
  174. package/dist/components/Icon/svgs/CameraOffSvg.d.ts +4 -0
  175. package/dist/components/Icon/svgs/CameraSvg.d.ts +4 -0
  176. package/dist/components/Icon/svgs/CastSvg.d.ts +4 -0
  177. package/dist/components/Icon/svgs/CheckCircleSvg.d.ts +4 -0
  178. package/dist/components/Icon/svgs/CheckSquareSvg.d.ts +4 -0
  179. package/dist/components/Icon/svgs/CheckSvg.d.ts +4 -0
  180. package/dist/components/Icon/svgs/ChevronDownSvg.d.ts +5 -0
  181. package/dist/components/Icon/svgs/ChevronLeftSvg.d.ts +4 -0
  182. package/dist/components/Icon/svgs/ChevronRightSvg.d.ts +4 -0
  183. package/dist/components/Icon/svgs/ChevronUpSvg.d.ts +5 -0
  184. package/dist/components/Icon/svgs/ChevronsDownSvg.d.ts +4 -0
  185. package/dist/components/Icon/svgs/ChevronsLeftSvg.d.ts +4 -0
  186. package/dist/components/Icon/svgs/ChevronsRightSvg.d.ts +4 -0
  187. package/dist/components/Icon/svgs/ChevronsUpSvg.d.ts +4 -0
  188. package/dist/components/Icon/svgs/ChromeSvg.d.ts +4 -0
  189. package/dist/components/Icon/svgs/CircleSvg.d.ts +4 -0
  190. package/dist/components/Icon/svgs/ClipboardSvg.d.ts +4 -0
  191. package/dist/components/Icon/svgs/ClockSvg.d.ts +4 -0
  192. package/dist/components/Icon/svgs/CloudDrizzleSvg.d.ts +4 -0
  193. package/dist/components/Icon/svgs/CloudLightningSvg.d.ts +4 -0
  194. package/dist/components/Icon/svgs/CloudOffSvg.d.ts +4 -0
  195. package/dist/components/Icon/svgs/CloudRainSvg.d.ts +4 -0
  196. package/dist/components/Icon/svgs/CloudSnowSvg.d.ts +4 -0
  197. package/dist/components/Icon/svgs/CloudSvg.d.ts +4 -0
  198. package/dist/components/Icon/svgs/CodeSvg.d.ts +4 -0
  199. package/dist/components/Icon/svgs/CodepenSvg.d.ts +4 -0
  200. package/dist/components/Icon/svgs/CodesandboxSvg.d.ts +4 -0
  201. package/dist/components/Icon/svgs/CoffeeSvg.d.ts +4 -0
  202. package/dist/components/Icon/svgs/ColumnsSvg.d.ts +4 -0
  203. package/dist/components/Icon/svgs/CommandSvg.d.ts +4 -0
  204. package/dist/components/Icon/svgs/CompassSvg.d.ts +4 -0
  205. package/dist/components/Icon/svgs/CopySvg.d.ts +4 -0
  206. package/dist/components/Icon/svgs/CornerDownLeftSvg.d.ts +4 -0
  207. package/dist/components/Icon/svgs/CornerDownRightSvg.d.ts +4 -0
  208. package/dist/components/Icon/svgs/CornerLeftDownSvg.d.ts +4 -0
  209. package/dist/components/Icon/svgs/CornerLeftUpSvg.d.ts +4 -0
  210. package/dist/components/Icon/svgs/CornerRightDownSvg.d.ts +4 -0
  211. package/dist/components/Icon/svgs/CornerRightUpSvg.d.ts +4 -0
  212. package/dist/components/Icon/svgs/CornerUpLeftSvg.d.ts +4 -0
  213. package/dist/components/Icon/svgs/CornerUpRightSvg.d.ts +4 -0
  214. package/dist/components/Icon/svgs/CpuSvg.d.ts +4 -0
  215. package/dist/components/Icon/svgs/CreditCardSvg.d.ts +4 -0
  216. package/dist/components/Icon/svgs/CropSvg.d.ts +4 -0
  217. package/dist/components/Icon/svgs/CrosshairSvg.d.ts +4 -0
  218. package/dist/components/Icon/svgs/DatabaseSvg.d.ts +4 -0
  219. package/dist/components/Icon/svgs/DeleteSvg.d.ts +4 -0
  220. package/dist/components/Icon/svgs/DiscSvg.d.ts +4 -0
  221. package/dist/components/Icon/svgs/DivideCircleSvg.d.ts +4 -0
  222. package/dist/components/Icon/svgs/DivideSquareSvg.d.ts +4 -0
  223. package/dist/components/Icon/svgs/DivideSvg.d.ts +4 -0
  224. package/dist/components/Icon/svgs/DollarSignSvg.d.ts +4 -0
  225. package/dist/components/Icon/svgs/DownloadCloudSvg.d.ts +4 -0
  226. package/dist/components/Icon/svgs/DownloadSvg.d.ts +4 -0
  227. package/dist/components/Icon/svgs/DribbbleSvg.d.ts +4 -0
  228. package/dist/components/Icon/svgs/DropletSvg.d.ts +4 -0
  229. package/dist/components/Icon/svgs/Edit2Svg.d.ts +4 -0
  230. package/dist/components/Icon/svgs/Edit3Svg.d.ts +4 -0
  231. package/dist/components/Icon/svgs/EditSvg.d.ts +4 -0
  232. package/dist/components/Icon/svgs/ExternalLinkSvg.d.ts +4 -0
  233. package/dist/components/Icon/svgs/EyeOffSvg.d.ts +4 -0
  234. package/dist/components/Icon/svgs/EyeSvg.d.ts +4 -0
  235. package/dist/components/Icon/svgs/FastForwardSvg.d.ts +4 -0
  236. package/dist/components/Icon/svgs/FeatherSvg.d.ts +4 -0
  237. package/dist/components/Icon/svgs/FigmaSvg.d.ts +4 -0
  238. package/dist/components/Icon/svgs/FileMinusSvg.d.ts +4 -0
  239. package/dist/components/Icon/svgs/FilePlusSvg.d.ts +4 -0
  240. package/dist/components/Icon/svgs/FileSvg.d.ts +4 -0
  241. package/dist/components/Icon/svgs/FileTextSvg.d.ts +4 -0
  242. package/dist/components/Icon/svgs/FilmSvg.d.ts +4 -0
  243. package/dist/components/Icon/svgs/FilterSvg.d.ts +4 -0
  244. package/dist/components/Icon/svgs/FlagSvg.d.ts +4 -0
  245. package/dist/components/Icon/svgs/FolderMinusSvg.d.ts +4 -0
  246. package/dist/components/Icon/svgs/FolderPlusSvg.d.ts +4 -0
  247. package/dist/components/Icon/svgs/FolderSvg.d.ts +4 -0
  248. package/dist/components/Icon/svgs/FramerSvg.d.ts +4 -0
  249. package/dist/components/Icon/svgs/FrownSvg.d.ts +4 -0
  250. package/dist/components/Icon/svgs/GiftSvg.d.ts +4 -0
  251. package/dist/components/Icon/svgs/GitBranchSvg.d.ts +4 -0
  252. package/dist/components/Icon/svgs/GitCommitSvg.d.ts +4 -0
  253. package/dist/components/Icon/svgs/GitMergeSvg.d.ts +4 -0
  254. package/dist/components/Icon/svgs/GitPullRequestSvg.d.ts +4 -0
  255. package/dist/components/Icon/svgs/GithubSvg.d.ts +4 -0
  256. package/dist/components/Icon/svgs/GitlabSvg.d.ts +4 -0
  257. package/dist/components/Icon/svgs/GlobeSvg.d.ts +4 -0
  258. package/dist/components/Icon/svgs/GridSvg.d.ts +4 -0
  259. package/dist/components/Icon/svgs/HardDriveSvg.d.ts +4 -0
  260. package/dist/components/Icon/svgs/HashSvg.d.ts +4 -0
  261. package/dist/components/Icon/svgs/HeadphonesSvg.d.ts +4 -0
  262. package/dist/components/Icon/svgs/HeartSvg.d.ts +4 -0
  263. package/dist/components/Icon/svgs/HelpCircleSvg.d.ts +4 -0
  264. package/dist/components/Icon/svgs/HexagonSvg.d.ts +4 -0
  265. package/dist/components/Icon/svgs/HomeSvg.d.ts +4 -0
  266. package/dist/components/Icon/svgs/ImageSvg.d.ts +4 -0
  267. package/dist/components/Icon/svgs/InboxSvg.d.ts +4 -0
  268. package/dist/components/Icon/svgs/InfoSvg.d.ts +4 -0
  269. package/dist/components/Icon/svgs/ItalicSvg.d.ts +4 -0
  270. package/dist/components/Icon/svgs/KeySvg.d.ts +4 -0
  271. package/dist/components/Icon/svgs/LayersSvg.d.ts +4 -0
  272. package/dist/components/Icon/svgs/LayoutSvg.d.ts +4 -0
  273. package/dist/components/Icon/svgs/LifeBuoySvg.d.ts +4 -0
  274. package/dist/components/Icon/svgs/Link2Svg.d.ts +4 -0
  275. package/dist/components/Icon/svgs/LinkSvg.d.ts +4 -0
  276. package/dist/components/Icon/svgs/LinkedinSvg.d.ts +4 -0
  277. package/dist/components/Icon/svgs/ListSvg.d.ts +4 -0
  278. package/dist/components/Icon/svgs/LoaderSvg.d.ts +4 -0
  279. package/dist/components/Icon/svgs/LockSvg.d.ts +4 -0
  280. package/dist/components/Icon/svgs/LogInSvg.d.ts +4 -0
  281. package/dist/components/Icon/svgs/LogOutSvg.d.ts +4 -0
  282. package/dist/components/Icon/svgs/MailSvg.d.ts +4 -0
  283. package/dist/components/Icon/svgs/MapPinSvg.d.ts +4 -0
  284. package/dist/components/Icon/svgs/MapSvg.d.ts +4 -0
  285. package/dist/components/Icon/svgs/Maximize2Svg.d.ts +4 -0
  286. package/dist/components/Icon/svgs/MaximizeSvg.d.ts +4 -0
  287. package/dist/components/Icon/svgs/MehSvg.d.ts +4 -0
  288. package/dist/components/Icon/svgs/MenuSvg.d.ts +4 -0
  289. package/dist/components/Icon/svgs/MessageCircleSvg.d.ts +4 -0
  290. package/dist/components/Icon/svgs/MessageSquareSvg.d.ts +4 -0
  291. package/dist/components/Icon/svgs/MicOffSvg.d.ts +4 -0
  292. package/dist/components/Icon/svgs/MicSvg.d.ts +4 -0
  293. package/dist/components/Icon/svgs/Minimize2Svg.d.ts +4 -0
  294. package/dist/components/Icon/svgs/MinimizeSvg.d.ts +4 -0
  295. package/dist/components/Icon/svgs/MinusCircleSvg.d.ts +4 -0
  296. package/dist/components/Icon/svgs/MinusSquareSvg.d.ts +4 -0
  297. package/dist/components/Icon/svgs/MinusSvg.d.ts +4 -0
  298. package/dist/components/Icon/svgs/MonitorSvg.d.ts +4 -0
  299. package/dist/components/Icon/svgs/MoonSvg.d.ts +4 -0
  300. package/dist/components/Icon/svgs/MoreHorizontalSvg.d.ts +4 -0
  301. package/dist/components/Icon/svgs/MoreVerticalSvg.d.ts +4 -0
  302. package/dist/components/Icon/svgs/MousePointerSvg.d.ts +4 -0
  303. package/dist/components/Icon/svgs/MoveSvg.d.ts +4 -0
  304. package/dist/components/Icon/svgs/MusicSvg.d.ts +4 -0
  305. package/dist/components/Icon/svgs/Navigation2Svg.d.ts +4 -0
  306. package/dist/components/Icon/svgs/NavigationSvg.d.ts +4 -0
  307. package/dist/components/Icon/svgs/OctagonSvg.d.ts +4 -0
  308. package/dist/components/Icon/svgs/PackageSvg.d.ts +4 -0
  309. package/dist/components/Icon/svgs/PaperclipSvg.d.ts +4 -0
  310. package/dist/components/Icon/svgs/PauseCircleSvg.d.ts +4 -0
  311. package/dist/components/Icon/svgs/PauseSvg.d.ts +4 -0
  312. package/dist/components/Icon/svgs/PenToolSvg.d.ts +4 -0
  313. package/dist/components/Icon/svgs/PercentSvg.d.ts +4 -0
  314. package/dist/components/Icon/svgs/PhoneCallSvg.d.ts +4 -0
  315. package/dist/components/Icon/svgs/PhoneForwardedSvg.d.ts +4 -0
  316. package/dist/components/Icon/svgs/PhoneIncomingSvg.d.ts +4 -0
  317. package/dist/components/Icon/svgs/PhoneMissedSvg.d.ts +4 -0
  318. package/dist/components/Icon/svgs/PhoneOffSvg.d.ts +4 -0
  319. package/dist/components/Icon/svgs/PhoneOutgoingSvg.d.ts +4 -0
  320. package/dist/components/Icon/svgs/PhoneSvg.d.ts +4 -0
  321. package/dist/components/Icon/svgs/PieChartSvg.d.ts +4 -0
  322. package/dist/components/Icon/svgs/PlayCircleSvg.d.ts +4 -0
  323. package/dist/components/Icon/svgs/PlaySvg.d.ts +4 -0
  324. package/dist/components/Icon/svgs/PlusCircleSvg.d.ts +4 -0
  325. package/dist/components/Icon/svgs/PlusSquareSvg.d.ts +4 -0
  326. package/dist/components/Icon/svgs/PlusSvg.d.ts +4 -0
  327. package/dist/components/Icon/svgs/PocketSvg.d.ts +4 -0
  328. package/dist/components/Icon/svgs/PowerSvg.d.ts +4 -0
  329. package/dist/components/Icon/svgs/PrinterSvg.d.ts +4 -0
  330. package/dist/components/Icon/svgs/RadioSvg.d.ts +4 -0
  331. package/dist/components/Icon/svgs/RefreshCcwSvg.d.ts +4 -0
  332. package/dist/components/Icon/svgs/RefreshCwSvg.d.ts +4 -0
  333. package/dist/components/Icon/svgs/RepeatSvg.d.ts +4 -0
  334. package/dist/components/Icon/svgs/RewindSvg.d.ts +4 -0
  335. package/dist/components/Icon/svgs/RotateCcwSvg.d.ts +4 -0
  336. package/dist/components/Icon/svgs/RotateCwSvg.d.ts +4 -0
  337. package/dist/components/Icon/svgs/RssSvg.d.ts +4 -0
  338. package/dist/components/Icon/svgs/SaveSvg.d.ts +4 -0
  339. package/dist/components/Icon/svgs/ScissorsSvg.d.ts +4 -0
  340. package/dist/components/Icon/svgs/SearchSvg.d.ts +4 -0
  341. package/dist/components/Icon/svgs/SendSvg.d.ts +4 -0
  342. package/dist/components/Icon/svgs/ServerSvg.d.ts +4 -0
  343. package/dist/components/Icon/svgs/SettingsSvg.d.ts +4 -0
  344. package/dist/components/Icon/svgs/Share2Svg.d.ts +4 -0
  345. package/dist/components/Icon/svgs/ShareSvg.d.ts +4 -0
  346. package/dist/components/Icon/svgs/ShieldOffSvg.d.ts +4 -0
  347. package/dist/components/Icon/svgs/ShieldSvg.d.ts +4 -0
  348. package/dist/components/Icon/svgs/ShoppingBagSvg.d.ts +4 -0
  349. package/dist/components/Icon/svgs/ShoppingCartSvg.d.ts +4 -0
  350. package/dist/components/Icon/svgs/ShuffleSvg.d.ts +4 -0
  351. package/dist/components/Icon/svgs/SidebarSvg.d.ts +4 -0
  352. package/dist/components/Icon/svgs/SkipBackSvg.d.ts +4 -0
  353. package/dist/components/Icon/svgs/SkipForwardSvg.d.ts +4 -0
  354. package/dist/components/Icon/svgs/SlackSvg.d.ts +4 -0
  355. package/dist/components/Icon/svgs/SlashSvg.d.ts +4 -0
  356. package/dist/components/Icon/svgs/SlidersSvg.d.ts +4 -0
  357. package/dist/components/Icon/svgs/SmartphoneSvg.d.ts +4 -0
  358. package/dist/components/Icon/svgs/SmileSvg.d.ts +4 -0
  359. package/dist/components/Icon/svgs/SpeakerSvg.d.ts +4 -0
  360. package/dist/components/Icon/svgs/SquareSvg.d.ts +4 -0
  361. package/dist/components/Icon/svgs/StarSvg.d.ts +4 -0
  362. package/dist/components/Icon/svgs/StopCircleSvg.d.ts +4 -0
  363. package/dist/components/Icon/svgs/SunSvg.d.ts +4 -0
  364. package/dist/components/Icon/svgs/SunriseSvg.d.ts +4 -0
  365. package/dist/components/Icon/svgs/SunsetSvg.d.ts +4 -0
  366. package/dist/components/Icon/svgs/TableSvg.d.ts +4 -0
  367. package/dist/components/Icon/svgs/TabletSvg.d.ts +4 -0
  368. package/dist/components/Icon/svgs/TagSvg.d.ts +4 -0
  369. package/dist/components/Icon/svgs/TargetSvg.d.ts +4 -0
  370. package/dist/components/Icon/svgs/TerminalSvg.d.ts +4 -0
  371. package/dist/components/Icon/svgs/ThermometerSvg.d.ts +4 -0
  372. package/dist/components/Icon/svgs/ThumbsDownSvg.d.ts +4 -0
  373. package/dist/components/Icon/svgs/ThumbsUpSvg.d.ts +4 -0
  374. package/dist/components/Icon/svgs/ToggleLeftSvg.d.ts +4 -0
  375. package/dist/components/Icon/svgs/ToggleRightSvg.d.ts +4 -0
  376. package/dist/components/Icon/svgs/ToolSvg.d.ts +4 -0
  377. package/dist/components/Icon/svgs/Trash2Svg.d.ts +4 -0
  378. package/dist/components/Icon/svgs/TrashSvg.d.ts +4 -0
  379. package/dist/components/Icon/svgs/TrelloSvg.d.ts +4 -0
  380. package/dist/components/Icon/svgs/TrendingDownSvg.d.ts +4 -0
  381. package/dist/components/Icon/svgs/TrendingUpSvg.d.ts +4 -0
  382. package/dist/components/Icon/svgs/TriangleSvg.d.ts +4 -0
  383. package/dist/components/Icon/svgs/TruckSvg.d.ts +4 -0
  384. package/dist/components/Icon/svgs/TvSvg.d.ts +4 -0
  385. package/dist/components/Icon/svgs/TwitchSvg.d.ts +4 -0
  386. package/dist/components/Icon/svgs/TwitterSvg.d.ts +4 -0
  387. package/dist/components/Icon/svgs/TypeSvg.d.ts +4 -0
  388. package/dist/components/Icon/svgs/UmbrellaSvg.d.ts +4 -0
  389. package/dist/components/Icon/svgs/UnderlineSvg.d.ts +4 -0
  390. package/dist/components/Icon/svgs/UnlockSvg.d.ts +4 -0
  391. package/dist/components/Icon/svgs/UploadCloudSvg.d.ts +4 -0
  392. package/dist/components/Icon/svgs/UploadSvg.d.ts +4 -0
  393. package/dist/components/Icon/svgs/UserCheckSvg.d.ts +4 -0
  394. package/dist/components/Icon/svgs/UserMinusSvg.d.ts +4 -0
  395. package/dist/components/Icon/svgs/UserPlusSvg.d.ts +4 -0
  396. package/dist/components/Icon/svgs/UserSvg.d.ts +4 -0
  397. package/dist/components/Icon/svgs/UserXSvg.d.ts +4 -0
  398. package/dist/components/Icon/svgs/UsersSvg.d.ts +4 -0
  399. package/dist/components/Icon/svgs/VideoOffSvg.d.ts +4 -0
  400. package/dist/components/Icon/svgs/VideoSvg.d.ts +4 -0
  401. package/dist/components/Icon/svgs/VoicemailSvg.d.ts +4 -0
  402. package/dist/components/Icon/svgs/Volume1Svg.d.ts +4 -0
  403. package/dist/components/Icon/svgs/Volume2Svg.d.ts +4 -0
  404. package/dist/components/Icon/svgs/VolumeSvg.d.ts +4 -0
  405. package/dist/components/Icon/svgs/VolumeXSvg.d.ts +4 -0
  406. package/dist/components/Icon/svgs/WatchSvg.d.ts +4 -0
  407. package/dist/components/Icon/svgs/WifiOffSvg.d.ts +4 -0
  408. package/dist/components/Icon/svgs/WifiSvg.d.ts +4 -0
  409. package/dist/components/Icon/svgs/WindSvg.d.ts +4 -0
  410. package/dist/components/Icon/svgs/XCircleSvg.d.ts +4 -0
  411. package/dist/components/Icon/svgs/XOctagonSvg.d.ts +4 -0
  412. package/dist/components/Icon/svgs/XSquareSvg.d.ts +4 -0
  413. package/dist/components/Icon/svgs/XSvg.d.ts +4 -0
  414. package/dist/components/Icon/svgs/ZapOffSvg.d.ts +4 -0
  415. package/dist/components/Icon/svgs/ZapSvg.d.ts +4 -0
  416. package/dist/components/Icon/svgs/ZoomInSvg.d.ts +4 -0
  417. package/dist/components/Icon/svgs/ZoomOutSvg.d.ts +4 -0
  418. package/dist/components/Icon/svgs/internal/EmptySvg.d.ts +4 -0
  419. package/dist/components/Icon/svgs/social/FacebookSvg.d.ts +4 -0
  420. package/dist/components/Icon/svgs/social/FlickrSvg.d.ts +4 -0
  421. package/dist/components/Icon/svgs/social/InstagramSvg.d.ts +4 -0
  422. package/dist/components/Icon/svgs/social/SoundcloudSvg.d.ts +4 -0
  423. package/dist/components/Icon/svgs/social/TiktokSvg.d.ts +4 -0
  424. package/dist/components/Icon/svgs/social/XSvg.d.ts +4 -0
  425. package/dist/components/Icon/svgs/social/YoutubeSvg.d.ts +4 -0
  426. package/dist/components/IconButton/IconButton.d.ts +10 -0
  427. package/dist/components/IconButton/IconButton.stories.d.ts +6 -0
  428. package/dist/components/IconButton/__tests__/IconButton.test.d.ts +1 -0
  429. package/dist/components/IconButton/index.d.ts +2 -0
  430. package/dist/components/Input/Input.d.ts +17 -0
  431. package/dist/components/Input/Input.stories.d.ts +12 -0
  432. package/dist/components/Input/__tests__/Input.test.d.ts +1 -0
  433. package/dist/components/Input/index.d.ts +2 -0
  434. package/dist/components/Label/Label.d.ts +13 -0
  435. package/dist/components/Label/Label.stories.d.ts +12 -0
  436. package/dist/components/Label/__tests__/Label.test.d.ts +1 -0
  437. package/dist/components/Label/index.d.ts +2 -0
  438. package/dist/components/Layout/Layout.d.ts +7 -0
  439. package/dist/components/Layout/Layout.stories.d.ts +15 -0
  440. package/dist/components/Layout/__tests__/Layout.test.d.ts +1 -0
  441. package/dist/components/Layout/index.d.ts +2 -0
  442. package/dist/components/Link/Link.d.ts +11 -0
  443. package/dist/components/Link/Link.stories.d.ts +13 -0
  444. package/dist/components/Link/__tests__/link.test.d.ts +1 -0
  445. package/dist/components/Link/index.d.ts +2 -0
  446. package/dist/components/Menu/Menu.context.d.ts +14 -0
  447. package/dist/components/Menu/Menu.d.ts +17 -0
  448. package/dist/components/Menu/MenuContent.d.ts +8 -0
  449. package/dist/components/Menu/MenuItem.d.ts +8 -0
  450. package/dist/components/Menu/MenuSection.d.ts +7 -0
  451. package/dist/components/Menu/MenuTrigger.d.ts +7 -0
  452. package/dist/components/Menu/index.d.ts +6 -0
  453. package/dist/components/Modal/Modal.d.ts +11 -0
  454. package/dist/components/Modal/Modal.stories.d.ts +16 -0
  455. package/dist/components/Modal/__tests__/Modal.test.d.ts +1 -0
  456. package/dist/components/Modal/index.d.ts +2 -0
  457. package/dist/components/Overlay/Overlay.d.ts +17 -0
  458. package/dist/components/Overlay/Overlay.stories.d.ts +341 -0
  459. package/dist/components/Overlay/index.d.ts +2 -0
  460. package/dist/components/Pagination/Pagination.d.ts +27 -0
  461. package/dist/components/Pagination/Pagination.stories.d.ts +15 -0
  462. package/dist/components/Pagination/PaginationControls.d.ts +9 -0
  463. package/dist/components/Pagination/PaginationInfo.d.ts +8 -0
  464. package/dist/components/Pagination/__tests__/getPaginationButtons.test.d.ts +1 -0
  465. package/dist/components/Pagination/getPaginationButtons.d.ts +3 -0
  466. package/dist/components/Pagination/index.d.ts +6 -0
  467. package/dist/components/Paragraph/Paragraph.d.ts +13 -0
  468. package/dist/components/Paragraph/Paragraph.stories.d.ts +19 -0
  469. package/dist/components/Paragraph/__tests__/Paragraph.test.d.ts +1 -0
  470. package/dist/components/Paragraph/index.d.ts +4 -0
  471. package/dist/components/Radio/LabelledRadio.d.ts +14 -0
  472. package/dist/components/Radio/Radio.d.ts +10 -0
  473. package/dist/components/Radio/Radio.stories.d.ts +20 -0
  474. package/dist/components/Radio/__tests__/Radio.test.d.ts +1 -0
  475. package/dist/components/Radio/index.d.ts +4 -0
  476. package/dist/components/Select/Select.d.ts +8 -0
  477. package/dist/components/Select/Select.stories.d.ts +9 -0
  478. package/dist/components/Select/__tests__/Select.test.d.ts +1 -0
  479. package/dist/components/Select/index.d.ts +2 -0
  480. package/dist/components/Snackbar/Snackbar.d.ts +13 -0
  481. package/dist/components/Snackbar/Snackbar.stories.d.ts +29 -0
  482. package/dist/components/Snackbar/__tests__/Snackbar.test.d.ts +1 -0
  483. package/dist/components/Snackbar/index.d.ts +2 -0
  484. package/dist/components/Spinner/Spinner.d.ts +8 -0
  485. package/dist/components/Spinner/Spinner.stories.d.ts +15 -0
  486. package/dist/components/Spinner/__tests__/Spinner.test.d.ts +1 -0
  487. package/dist/components/Spinner/index.d.ts +2 -0
  488. package/dist/components/Table/Table.d.ts +8 -0
  489. package/dist/components/Table/index.d.ts +2 -0
  490. package/dist/components/Tabs/Tab.d.ts +11 -0
  491. package/dist/components/Tabs/TabContext.d.ts +9 -0
  492. package/dist/components/Tabs/Tabs.d.ts +16 -0
  493. package/dist/components/Tabs/Tabs.stories.d.ts +15 -0
  494. package/dist/components/Tabs/__tests__/Tabs.test.d.ts +1 -0
  495. package/dist/components/Tabs/index.d.ts +2 -0
  496. package/dist/components/Textarea/Textarea.d.ts +11 -0
  497. package/dist/components/Textarea/Textarea.stories.d.ts +16 -0
  498. package/dist/components/Textarea/__tests__/Textarea.test.d.ts +1 -0
  499. package/dist/components/Textarea/index.d.ts +2 -0
  500. package/dist/components/Toggle/Toggle.d.ts +8 -0
  501. package/dist/components/Toggle/Toggle.stories.d.ts +16 -0
  502. package/dist/components/Toggle/ToggleHandle.d.ts +8 -0
  503. package/dist/components/Toggle/index.d.ts +2 -0
  504. package/dist/components/Tooltip/Tooltip.d.ts +8 -0
  505. package/dist/components/Tooltip/Tooltip.stories.d.ts +11 -0
  506. package/dist/components/Tooltip/__tests__/tooltip.test.d.ts +1 -0
  507. package/dist/components/Tooltip/index.d.ts +2 -0
  508. package/dist/components/UclLogo/UclLogo.d.ts +7 -0
  509. package/dist/components/UclLogo/UclLogo.stories.d.ts +10 -0
  510. package/dist/components/UclLogo/UclLogoNegativeSpace.d.ts +8 -0
  511. package/dist/components/UclLogo/__tests__/UclLogo.test.d.ts +1 -0
  512. package/dist/components/UclLogo/index.d.ts +4 -0
  513. package/dist/components/common/marginsStyle.d.ts +48 -0
  514. package/dist/components/index.d.ts +79 -0
  515. package/dist/hooks/useMediaQuery.d.ts +2 -0
  516. package/dist/index.d.ts +3 -0
  517. package/dist/index.js +17289 -0
  518. package/dist/theme/defaultTheme.d.ts +267 -0
  519. package/dist/theme/index.d.ts +3 -0
  520. package/dist/theme/useTheme.d.ts +488 -0
  521. package/lib/Welcome.mdx +31 -0
  522. package/lib/components/Accordion/Accordion.Heading.tsx +75 -0
  523. package/lib/components/Accordion/Accordion.Panel.tsx +47 -0
  524. package/lib/components/Accordion/Accordion.stories.tsx.NOT_READY +93 -0
  525. package/lib/components/Accordion/Accordion.tsx +114 -0
  526. package/lib/components/Accordion/__tests__/Accordion.test.tsx +64 -0
  527. package/lib/components/Accordion/__tests__/__snapshots__/Accordion.test.tsx.snap +71 -0
  528. package/lib/components/Accordion/__tests__/__snapshots__/IconButton.test.tsx.snap +74 -0
  529. package/lib/components/Accordion/index.ts +2 -0
  530. package/lib/components/Alert/Alert.mdx +43 -0
  531. package/lib/components/Alert/Alert.stories.tsx +111 -0
  532. package/lib/components/Alert/Alert.tsx +137 -0
  533. package/lib/components/Alert/AlertMessage.tsx +35 -0
  534. package/lib/components/Alert/AlertTitle.tsx +34 -0
  535. package/lib/components/Alert/__tests__/Alert.test.tsx +71 -0
  536. package/lib/components/Alert/__tests__/__snapshots__/Alert.test.tsx.snap +198 -0
  537. package/lib/components/Alert/index.ts +6 -0
  538. package/lib/components/AppHeader/AppHeader.stories.tsx +135 -0
  539. package/lib/components/AppHeader/AppHeader.tsx +90 -0
  540. package/lib/components/AppHeader/AppHeaderBottom.tsx +46 -0
  541. package/lib/components/AppHeader/AppHeaderNav.tsx +39 -0
  542. package/lib/components/AppHeader/AppHeaderTop.tsx +56 -0
  543. package/lib/components/AppHeader/__tests__/AppHeader.test.tsx +19 -0
  544. package/lib/components/AppHeader/__tests__/__snapshots__/AppHeader.test.tsx.snap +8 -0
  545. package/lib/components/AppHeader/index.ts +3 -0
  546. package/lib/components/AppMenu/AppMenu.context.tsx +162 -0
  547. package/lib/components/AppMenu/AppMenu.stories.tsx +177 -0
  548. package/lib/components/AppMenu/AppMenu.tsx +62 -0
  549. package/lib/components/AppMenu/AppMenuContent.tsx +121 -0
  550. package/lib/components/AppMenu/AppMenuDivider.tsx +40 -0
  551. package/lib/components/AppMenu/AppMenuItem.tsx +173 -0
  552. package/lib/components/AppMenu/AppMenuTrigger.tsx +50 -0
  553. package/lib/components/AppMenu/__tests__/AppMenu.test.tsx +100 -0
  554. package/lib/components/AppMenu/__tests__/__snapshots__/AppMenu.test.tsx.snap +128 -0
  555. package/lib/components/AppMenu/index.ts +2 -0
  556. package/lib/components/Avatar/Avatar.stories.tsx +33 -0
  557. package/lib/components/Avatar/Avatar.tsx +152 -0
  558. package/lib/components/Avatar/__tests__/Avatar.test.tsx +264 -0
  559. package/lib/components/Avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +260 -0
  560. package/lib/components/Avatar/index.ts +2 -0
  561. package/lib/components/Avatar/utils/extractInitials.test.ts +65 -0
  562. package/lib/components/Avatar/utils/extractInitials.ts +24 -0
  563. package/lib/components/Blanket/Blanket.stories.tsx +67 -0
  564. package/lib/components/Blanket/Blanket.tsx +66 -0
  565. package/lib/components/Blanket/__tests__/Blanket.test.tsx +54 -0
  566. package/lib/components/Blanket/__tests__/__snapshots__/Blanket.test.tsx.snap +10 -0
  567. package/lib/components/Blanket/index.ts +2 -0
  568. package/lib/components/Breadcrumbs/Breadcrumb.tsx +78 -0
  569. package/lib/components/Breadcrumbs/Breadcrumbs.stories.tsx +35 -0
  570. package/lib/components/Breadcrumbs/Breadcrumbs.tsx +64 -0
  571. package/lib/components/Breadcrumbs/__tests__/Breadcrumbs.test.tsx +128 -0
  572. package/lib/components/Breadcrumbs/__tests__/__snapshots__/Breadcrumbs.test.tsx.snap +149 -0
  573. package/lib/components/Breadcrumbs/index.ts +2 -0
  574. package/lib/components/Button/Button.mdx +325 -0
  575. package/lib/components/Button/Button.stories.tsx +420 -0
  576. package/lib/components/Button/Button.tsx +146 -0
  577. package/lib/components/Button/Button.types.ts +46 -0
  578. package/lib/components/Button/__tests__/Button.test.tsx +244 -0
  579. package/lib/components/Button/__tests__/__snapshots__/Button.test.tsx.snap +139 -0
  580. package/lib/components/Button/buttonPrimaryStyle.ts +62 -0
  581. package/lib/components/Button/buttonSecondaryStyle.ts +65 -0
  582. package/lib/components/Button/buttonTertiaryStyle.ts +54 -0
  583. package/lib/components/Button/index.ts +2 -0
  584. package/lib/components/Checkbox/Checkbox.stories.tsx +31 -0
  585. package/lib/components/Checkbox/Checkbox.tsx +177 -0
  586. package/lib/components/Checkbox/LabelledCheckbox.tsx +111 -0
  587. package/lib/components/Checkbox/__tests__/Checkbox.test.tsx +99 -0
  588. package/lib/components/Checkbox/__tests__/__snapshots__/Checkbox.test.tsx.snap +87 -0
  589. package/lib/components/Checkbox/index.ts +4 -0
  590. package/lib/components/Datepicker/Datepicker.stories.tsx +70 -0
  591. package/lib/components/Datepicker/Datepicker.tsx +153 -0
  592. package/lib/components/Datepicker/__tests__/Datepicker.test.tsx +147 -0
  593. package/lib/components/Datepicker/__tests__/__snapshots__/Datepicker.test.tsx.snap +679 -0
  594. package/lib/components/Datepicker/index.ts +2 -0
  595. package/lib/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.tsx +59 -0
  596. package/lib/components/Datepicker/subcomponents/CalendarGrid/index.ts +1 -0
  597. package/lib/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.tsx +64 -0
  598. package/lib/components/Datepicker/subcomponents/CalendarMenu/index.ts +1 -0
  599. package/lib/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.tsx +35 -0
  600. package/lib/components/Datepicker/subcomponents/ColumnHeadings/index.ts +1 -0
  601. package/lib/components/Datepicker/subcomponents/DateField/DateField.tsx +155 -0
  602. package/lib/components/Datepicker/subcomponents/DateField/__tests__/DateField.test.tsx +191 -0
  603. package/lib/components/Datepicker/subcomponents/DateField/index.ts +1 -0
  604. package/lib/components/Datepicker/subcomponents/Day/Day.stories.tsx +81 -0
  605. package/lib/components/Datepicker/subcomponents/Day/Day.tsx +94 -0
  606. package/lib/components/Datepicker/subcomponents/Day/index.ts +1 -0
  607. package/lib/components/Datepicker/subcomponents/MonthSelector/MonthSelector.tsx +70 -0
  608. package/lib/components/Datepicker/subcomponents/MonthSelector/index.ts +1 -0
  609. package/lib/components/Datepicker/subcomponents/Native/Native.tsx +59 -0
  610. package/lib/components/Datepicker/subcomponents/Native/index.ts +1 -0
  611. package/lib/components/Datepicker/subcomponents/index.ts +7 -0
  612. package/lib/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.ts +166 -0
  613. package/lib/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.ts +109 -0
  614. package/lib/components/Datepicker/utils/index.ts +2 -0
  615. package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.test.ts +41 -0
  616. package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.ts +48 -0
  617. package/lib/components/Dialog/BaseDialog.tsx +163 -0
  618. package/lib/components/Dialog/Dialog.stories.tsx +107 -0
  619. package/lib/components/Dialog/Dialog.tsx +73 -0
  620. package/lib/components/Dialog/DialogBody.tsx +35 -0
  621. package/lib/components/Dialog/DialogFooter.tsx +90 -0
  622. package/lib/components/Dialog/DialogHeader.tsx +83 -0
  623. package/lib/components/Dialog/index.tsx +10 -0
  624. package/lib/components/Divider/Divider.stories.tsx +29 -0
  625. package/lib/components/Divider/Divider.tsx +37 -0
  626. package/lib/components/Divider/__tests__/Divider.test.tsx +33 -0
  627. package/lib/components/Divider/__tests__/__snapshots__/Breadcrumbs.test.tsx.snap +145 -0
  628. package/lib/components/Divider/index.ts +2 -0
  629. package/lib/components/FeedbackDialog/FeedbackDialog.stories.tsx +67 -0
  630. package/lib/components/FeedbackDialog/FeedbackDialog.tsx +131 -0
  631. package/lib/components/FeedbackDialog/index.tsx +2 -0
  632. package/lib/components/Field/CharacterCount.tsx +48 -0
  633. package/lib/components/Field/ErrorText.tsx +55 -0
  634. package/lib/components/Field/Field.stories.tsx +426 -0
  635. package/lib/components/Field/Field.tsx +108 -0
  636. package/lib/components/Field/HelperText.tsx +42 -0
  637. package/lib/components/Field/__tests__/Field.test.tsx +510 -0
  638. package/lib/components/Field/__tests__/__snapshots__/Field.test.tsx.snap +300 -0
  639. package/lib/components/Field/index.ts +6 -0
  640. package/lib/components/Footer/Footer.stories.tsx +50 -0
  641. package/lib/components/Footer/Footer.tsx +261 -0
  642. package/lib/components/Footer/FooterColumn.tsx +54 -0
  643. package/lib/components/Footer/FooterNavLink.tsx +56 -0
  644. package/lib/components/Footer/SocialLink.tsx +104 -0
  645. package/lib/components/Footer/__tests__/Footer.test.tsx +57 -0
  646. package/lib/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap +935 -0
  647. package/lib/components/Footer/index.ts +2 -0
  648. package/lib/components/Header/Header.tsx +109 -0
  649. package/lib/components/Header/HeaderMenu.tsx +34 -0
  650. package/lib/components/Header/__tests__/Header.test.tsx +26 -0
  651. package/lib/components/Header/__tests__/__snapshots__/Header.test.tsx.snap +65 -0
  652. package/lib/components/Header/index.ts +3 -0
  653. package/lib/components/HeaderDraft/HeaderBottomBreadcrumbs.tsx +50 -0
  654. package/lib/components/HeaderDraft/HeaderBottomHeadingAndAvatar.tsx +141 -0
  655. package/lib/components/HeaderDraft/HeaderBreadcrumb.tsx +74 -0
  656. package/lib/components/HeaderDraft/HeaderDraft.tsx +178 -0
  657. package/lib/components/HeaderDraft/HeaderMenu.tsx +24 -0
  658. package/lib/components/HeaderDraft/__tests__/Header.test.tsx +40 -0
  659. package/lib/components/HeaderDraft/__tests__/__snapshots__/Header.test.tsx.snap +126 -0
  660. package/lib/components/HeaderDraft/index.ts +4 -0
  661. package/lib/components/Heading/Documentation.mdx +118 -0
  662. package/lib/components/Heading/Heading.stories.tsx +107 -0
  663. package/lib/components/Heading/Heading.tsx +94 -0
  664. package/lib/components/Heading/__tests__/Heading.test.tsx +79 -0
  665. package/lib/components/Heading/__tests__/__snapshots__/Heading.test.tsx.snap +37 -0
  666. package/lib/components/Heading/index.ts +2 -0
  667. package/lib/components/Icon/BaseIcon.tsx +47 -0
  668. package/lib/components/Icon/Icon.stories.tsx +44 -0
  669. package/lib/components/Icon/Icon.tsx +52 -0
  670. package/lib/components/Icon/__tests__/Icon.test.tsx +94 -0
  671. package/lib/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap +84 -0
  672. package/lib/components/Icon/index.ts +2 -0
  673. package/lib/components/Icon/svgImports.ts +599 -0
  674. package/lib/components/Icon/svgs/ActivitySvg.tsx +23 -0
  675. package/lib/components/Icon/svgs/AirplaySvg.tsx +24 -0
  676. package/lib/components/Icon/svgs/AlertCircleSvg.tsx +39 -0
  677. package/lib/components/Icon/svgs/AlertOctagonSvg.tsx +35 -0
  678. package/lib/components/Icon/svgs/AlertTriangleSvg.tsx +35 -0
  679. package/lib/components/Icon/svgs/AlignCenterSvg.tsx +46 -0
  680. package/lib/components/Icon/svgs/AlignJustifySvg.tsx +46 -0
  681. package/lib/components/Icon/svgs/AlignLeftSvg.tsx +46 -0
  682. package/lib/components/Icon/svgs/AlignRightSvg.tsx +46 -0
  683. package/lib/components/Icon/svgs/AnchorSvg.tsx +34 -0
  684. package/lib/components/Icon/svgs/ApertureSvg.tsx +63 -0
  685. package/lib/components/Icon/svgs/ArchiveSvg.tsx +35 -0
  686. package/lib/components/Icon/svgs/ArrowDownCircleSvg.tsx +34 -0
  687. package/lib/components/Icon/svgs/ArrowDownLeftSvg.tsx +29 -0
  688. package/lib/components/Icon/svgs/ArrowDownRightSvg.tsx +29 -0
  689. package/lib/components/Icon/svgs/ArrowDownSvg.tsx +29 -0
  690. package/lib/components/Icon/svgs/ArrowLeftCircleSvg.tsx +34 -0
  691. package/lib/components/Icon/svgs/ArrowLeftSvg.tsx +29 -0
  692. package/lib/components/Icon/svgs/ArrowRightCircleSvg.tsx +34 -0
  693. package/lib/components/Icon/svgs/ArrowRightSvg.tsx +29 -0
  694. package/lib/components/Icon/svgs/ArrowUpCircleSvg.tsx +34 -0
  695. package/lib/components/Icon/svgs/ArrowUpLeftSvg.tsx +29 -0
  696. package/lib/components/Icon/svgs/ArrowUpRightSvg.tsx +29 -0
  697. package/lib/components/Icon/svgs/ArrowUpSvg.tsx +29 -0
  698. package/lib/components/Icon/svgs/AtSignSvg.tsx +28 -0
  699. package/lib/components/Icon/svgs/AvatarSvg.tsx +29 -0
  700. package/lib/components/Icon/svgs/AwardSvg.tsx +28 -0
  701. package/lib/components/Icon/svgs/BarChart2Svg.tsx +40 -0
  702. package/lib/components/Icon/svgs/BarChartSvg.tsx +40 -0
  703. package/lib/components/Icon/svgs/BatteryChargingSvg.tsx +30 -0
  704. package/lib/components/Icon/svgs/BatterySvg.tsx +36 -0
  705. package/lib/components/Icon/svgs/BellOffSvg.tsx +32 -0
  706. package/lib/components/Icon/svgs/BellSvg.tsx +24 -0
  707. package/lib/components/Icon/svgs/BluetoothSvg.tsx +23 -0
  708. package/lib/components/Icon/svgs/BoldSvg.tsx +24 -0
  709. package/lib/components/Icon/svgs/BookOpenSvg.tsx +24 -0
  710. package/lib/components/Icon/svgs/BookSvg.tsx +24 -0
  711. package/lib/components/Icon/svgs/BookmarkSvg.tsx +23 -0
  712. package/lib/components/Icon/svgs/BoxSvg.tsx +30 -0
  713. package/lib/components/Icon/svgs/BriefcaseSvg.tsx +31 -0
  714. package/lib/components/Icon/svgs/CalendarSvg.tsx +48 -0
  715. package/lib/components/Icon/svgs/CameraOffSvg.tsx +29 -0
  716. package/lib/components/Icon/svgs/CameraSvg.tsx +28 -0
  717. package/lib/components/Icon/svgs/CastSvg.tsx +29 -0
  718. package/lib/components/Icon/svgs/CheckCircleSvg.tsx +24 -0
  719. package/lib/components/Icon/svgs/CheckSquareSvg.tsx +24 -0
  720. package/lib/components/Icon/svgs/CheckSvg.tsx +23 -0
  721. package/lib/components/Icon/svgs/ChevronDownSvg.tsx +32 -0
  722. package/lib/components/Icon/svgs/ChevronLeftSvg.tsx +23 -0
  723. package/lib/components/Icon/svgs/ChevronRightSvg.tsx +23 -0
  724. package/lib/components/Icon/svgs/ChevronUpSvg.tsx +25 -0
  725. package/lib/components/Icon/svgs/ChevronsDownSvg.tsx +24 -0
  726. package/lib/components/Icon/svgs/ChevronsLeftSvg.tsx +24 -0
  727. package/lib/components/Icon/svgs/ChevronsRightSvg.tsx +24 -0
  728. package/lib/components/Icon/svgs/ChevronsUpSvg.tsx +24 -0
  729. package/lib/components/Icon/svgs/ChromeSvg.tsx +50 -0
  730. package/lib/components/Icon/svgs/CircleSvg.tsx +27 -0
  731. package/lib/components/Icon/svgs/ClipboardSvg.tsx +31 -0
  732. package/lib/components/Icon/svgs/ClockSvg.tsx +28 -0
  733. package/lib/components/Icon/svgs/CloudDrizzleSvg.tsx +59 -0
  734. package/lib/components/Icon/svgs/CloudLightningSvg.tsx +24 -0
  735. package/lib/components/Icon/svgs/CloudOffSvg.tsx +29 -0
  736. package/lib/components/Icon/svgs/CloudRainSvg.tsx +41 -0
  737. package/lib/components/Icon/svgs/CloudSnowSvg.tsx +59 -0
  738. package/lib/components/Icon/svgs/CloudSvg.tsx +23 -0
  739. package/lib/components/Icon/svgs/CodeSvg.tsx +24 -0
  740. package/lib/components/Icon/svgs/CodepenSvg.tsx +37 -0
  741. package/lib/components/Icon/svgs/CodesandboxSvg.tsx +33 -0
  742. package/lib/components/Icon/svgs/CoffeeSvg.tsx +42 -0
  743. package/lib/components/Icon/svgs/ColumnsSvg.tsx +23 -0
  744. package/lib/components/Icon/svgs/CommandSvg.tsx +23 -0
  745. package/lib/components/Icon/svgs/CompassSvg.tsx +28 -0
  746. package/lib/components/Icon/svgs/CopySvg.tsx +31 -0
  747. package/lib/components/Icon/svgs/CornerDownLeftSvg.tsx +24 -0
  748. package/lib/components/Icon/svgs/CornerDownRightSvg.tsx +24 -0
  749. package/lib/components/Icon/svgs/CornerLeftDownSvg.tsx +24 -0
  750. package/lib/components/Icon/svgs/CornerLeftUpSvg.tsx +24 -0
  751. package/lib/components/Icon/svgs/CornerRightDownSvg.tsx +24 -0
  752. package/lib/components/Icon/svgs/CornerRightUpSvg.tsx +24 -0
  753. package/lib/components/Icon/svgs/CornerUpLeftSvg.tsx +24 -0
  754. package/lib/components/Icon/svgs/CornerUpRightSvg.tsx +24 -0
  755. package/lib/components/Icon/svgs/CpuSvg.tsx +84 -0
  756. package/lib/components/Icon/svgs/CreditCardSvg.tsx +36 -0
  757. package/lib/components/Icon/svgs/CropSvg.tsx +24 -0
  758. package/lib/components/Icon/svgs/CrosshairSvg.tsx +51 -0
  759. package/lib/components/Icon/svgs/DatabaseSvg.tsx +30 -0
  760. package/lib/components/Icon/svgs/DeleteSvg.tsx +35 -0
  761. package/lib/components/Icon/svgs/DiscSvg.tsx +32 -0
  762. package/lib/components/Icon/svgs/DivideCircleSvg.tsx +45 -0
  763. package/lib/components/Icon/svgs/DivideSquareSvg.tsx +48 -0
  764. package/lib/components/Icon/svgs/DivideSvg.tsx +38 -0
  765. package/lib/components/Icon/svgs/DollarSignSvg.tsx +29 -0
  766. package/lib/components/Icon/svgs/DownloadCloudSvg.tsx +30 -0
  767. package/lib/components/Icon/svgs/DownloadSvg.tsx +30 -0
  768. package/lib/components/Icon/svgs/DribbbleSvg.tsx +28 -0
  769. package/lib/components/Icon/svgs/DropletSvg.tsx +23 -0
  770. package/lib/components/Icon/svgs/Edit2Svg.tsx +23 -0
  771. package/lib/components/Icon/svgs/Edit3Svg.tsx +24 -0
  772. package/lib/components/Icon/svgs/EditSvg.tsx +24 -0
  773. package/lib/components/Icon/svgs/ExternalLinkSvg.tsx +30 -0
  774. package/lib/components/Icon/svgs/EyeOffSvg.tsx +29 -0
  775. package/lib/components/Icon/svgs/EyeSvg.tsx +28 -0
  776. package/lib/components/Icon/svgs/FastForwardSvg.tsx +24 -0
  777. package/lib/components/Icon/svgs/FeatherSvg.tsx +35 -0
  778. package/lib/components/Icon/svgs/FigmaSvg.tsx +27 -0
  779. package/lib/components/Icon/svgs/FileMinusSvg.tsx +30 -0
  780. package/lib/components/Icon/svgs/FilePlusSvg.tsx +36 -0
  781. package/lib/components/Icon/svgs/FileSvg.tsx +24 -0
  782. package/lib/components/Icon/svgs/FileTextSvg.tsx +37 -0
  783. package/lib/components/Icon/svgs/FilmSvg.tsx +72 -0
  784. package/lib/components/Icon/svgs/FilterSvg.tsx +23 -0
  785. package/lib/components/Icon/svgs/FlagSvg.tsx +29 -0
  786. package/lib/components/Icon/svgs/FolderMinusSvg.tsx +29 -0
  787. package/lib/components/Icon/svgs/FolderPlusSvg.tsx +35 -0
  788. package/lib/components/Icon/svgs/FolderSvg.tsx +23 -0
  789. package/lib/components/Icon/svgs/FramerSvg.tsx +23 -0
  790. package/lib/components/Icon/svgs/FrownSvg.tsx +40 -0
  791. package/lib/components/Icon/svgs/GiftSvg.tsx +37 -0
  792. package/lib/components/Icon/svgs/GitBranchSvg.tsx +39 -0
  793. package/lib/components/Icon/svgs/GitCommitSvg.tsx +39 -0
  794. package/lib/components/Icon/svgs/GitMergeSvg.tsx +33 -0
  795. package/lib/components/Icon/svgs/GitPullRequestSvg.tsx +39 -0
  796. package/lib/components/Icon/svgs/GithubSvg.tsx +23 -0
  797. package/lib/components/Icon/svgs/GitlabSvg.tsx +23 -0
  798. package/lib/components/Icon/svgs/GlobeSvg.tsx +34 -0
  799. package/lib/components/Icon/svgs/GridSvg.tsx +46 -0
  800. package/lib/components/Icon/svgs/HardDriveSvg.tsx +41 -0
  801. package/lib/components/Icon/svgs/HashSvg.tsx +46 -0
  802. package/lib/components/Icon/svgs/HeadphonesSvg.tsx +24 -0
  803. package/lib/components/Icon/svgs/HeartSvg.tsx +23 -0
  804. package/lib/components/Icon/svgs/HelpCircleSvg.tsx +34 -0
  805. package/lib/components/Icon/svgs/HexagonSvg.tsx +23 -0
  806. package/lib/components/Icon/svgs/HomeSvg.tsx +24 -0
  807. package/lib/components/Icon/svgs/ImageSvg.tsx +36 -0
  808. package/lib/components/Icon/svgs/InboxSvg.tsx +24 -0
  809. package/lib/components/Icon/svgs/InfoSvg.tsx +39 -0
  810. package/lib/components/Icon/svgs/ItalicSvg.tsx +40 -0
  811. package/lib/components/Icon/svgs/KeySvg.tsx +23 -0
  812. package/lib/components/Icon/svgs/LayersSvg.tsx +25 -0
  813. package/lib/components/Icon/svgs/LayoutSvg.tsx +42 -0
  814. package/lib/components/Icon/svgs/LifeBuoySvg.tsx +62 -0
  815. package/lib/components/Icon/svgs/Link2Svg.tsx +29 -0
  816. package/lib/components/Icon/svgs/LinkSvg.tsx +24 -0
  817. package/lib/components/Icon/svgs/LinkedinSvg.tsx +34 -0
  818. package/lib/components/Icon/svgs/ListSvg.tsx +58 -0
  819. package/lib/components/Icon/svgs/LoaderSvg.tsx +70 -0
  820. package/lib/components/Icon/svgs/LockSvg.tsx +31 -0
  821. package/lib/components/Icon/svgs/LogInSvg.tsx +30 -0
  822. package/lib/components/Icon/svgs/LogOutSvg.tsx +30 -0
  823. package/lib/components/Icon/svgs/MailSvg.tsx +24 -0
  824. package/lib/components/Icon/svgs/MapPinSvg.tsx +28 -0
  825. package/lib/components/Icon/svgs/MapSvg.tsx +35 -0
  826. package/lib/components/Icon/svgs/Maximize2Svg.tsx +36 -0
  827. package/lib/components/Icon/svgs/MaximizeSvg.tsx +23 -0
  828. package/lib/components/Icon/svgs/MehSvg.tsx +45 -0
  829. package/lib/components/Icon/svgs/MenuSvg.tsx +40 -0
  830. package/lib/components/Icon/svgs/MessageCircleSvg.tsx +23 -0
  831. package/lib/components/Icon/svgs/MessageSquareSvg.tsx +23 -0
  832. package/lib/components/Icon/svgs/MicOffSvg.tsx +42 -0
  833. package/lib/components/Icon/svgs/MicSvg.tsx +36 -0
  834. package/lib/components/Icon/svgs/Minimize2Svg.tsx +36 -0
  835. package/lib/components/Icon/svgs/MinimizeSvg.tsx +23 -0
  836. package/lib/components/Icon/svgs/MinusCircleSvg.tsx +33 -0
  837. package/lib/components/Icon/svgs/MinusSquareSvg.tsx +36 -0
  838. package/lib/components/Icon/svgs/MinusSvg.tsx +29 -0
  839. package/lib/components/Icon/svgs/MonitorSvg.tsx +42 -0
  840. package/lib/components/Icon/svgs/MoonSvg.tsx +23 -0
  841. package/lib/components/Icon/svgs/MoreHorizontalSvg.tsx +37 -0
  842. package/lib/components/Icon/svgs/MoreVerticalSvg.tsx +37 -0
  843. package/lib/components/Icon/svgs/MousePointerSvg.tsx +24 -0
  844. package/lib/components/Icon/svgs/MoveSvg.tsx +38 -0
  845. package/lib/components/Icon/svgs/MusicSvg.tsx +33 -0
  846. package/lib/components/Icon/svgs/Navigation2Svg.tsx +23 -0
  847. package/lib/components/Icon/svgs/NavigationSvg.tsx +23 -0
  848. package/lib/components/Icon/svgs/OctagonSvg.tsx +23 -0
  849. package/lib/components/Icon/svgs/PackageSvg.tsx +36 -0
  850. package/lib/components/Icon/svgs/PaperclipSvg.tsx +23 -0
  851. package/lib/components/Icon/svgs/PauseCircleSvg.tsx +39 -0
  852. package/lib/components/Icon/svgs/PauseSvg.tsx +34 -0
  853. package/lib/components/Icon/svgs/PenToolSvg.tsx +30 -0
  854. package/lib/components/Icon/svgs/PercentSvg.tsx +38 -0
  855. package/lib/components/Icon/svgs/PhoneCallSvg.tsx +23 -0
  856. package/lib/components/Icon/svgs/PhoneForwardedSvg.tsx +30 -0
  857. package/lib/components/Icon/svgs/PhoneIncomingSvg.tsx +30 -0
  858. package/lib/components/Icon/svgs/PhoneMissedSvg.tsx +35 -0
  859. package/lib/components/Icon/svgs/PhoneOffSvg.tsx +29 -0
  860. package/lib/components/Icon/svgs/PhoneOutgoingSvg.tsx +30 -0
  861. package/lib/components/Icon/svgs/PhoneSvg.tsx +23 -0
  862. package/lib/components/Icon/svgs/PieChartSvg.tsx +24 -0
  863. package/lib/components/Icon/svgs/PlayCircleSvg.tsx +28 -0
  864. package/lib/components/Icon/svgs/PlaySvg.tsx +23 -0
  865. package/lib/components/Icon/svgs/PlusCircleSvg.tsx +39 -0
  866. package/lib/components/Icon/svgs/PlusSquareSvg.tsx +42 -0
  867. package/lib/components/Icon/svgs/PlusSvg.tsx +34 -0
  868. package/lib/components/Icon/svgs/PocketSvg.tsx +24 -0
  869. package/lib/components/Icon/svgs/PowerSvg.tsx +29 -0
  870. package/lib/components/Icon/svgs/PrinterSvg.tsx +30 -0
  871. package/lib/components/Icon/svgs/RadioSvg.tsx +28 -0
  872. package/lib/components/Icon/svgs/RefreshCcwSvg.tsx +25 -0
  873. package/lib/components/Icon/svgs/RefreshCwSvg.tsx +25 -0
  874. package/lib/components/Icon/svgs/RepeatSvg.tsx +26 -0
  875. package/lib/components/Icon/svgs/RewindSvg.tsx +24 -0
  876. package/lib/components/Icon/svgs/RotateCcwSvg.tsx +24 -0
  877. package/lib/components/Icon/svgs/RotateCwSvg.tsx +24 -0
  878. package/lib/components/Icon/svgs/RssSvg.tsx +29 -0
  879. package/lib/components/Icon/svgs/SaveSvg.tsx +25 -0
  880. package/lib/components/Icon/svgs/ScissorsSvg.tsx +50 -0
  881. package/lib/components/Icon/svgs/SearchSvg.tsx +33 -0
  882. package/lib/components/Icon/svgs/SendSvg.tsx +29 -0
  883. package/lib/components/Icon/svgs/ServerSvg.tsx +50 -0
  884. package/lib/components/Icon/svgs/SettingsSvg.tsx +28 -0
  885. package/lib/components/Icon/svgs/Share2Svg.tsx +49 -0
  886. package/lib/components/Icon/svgs/ShareSvg.tsx +30 -0
  887. package/lib/components/Icon/svgs/ShieldOffSvg.tsx +30 -0
  888. package/lib/components/Icon/svgs/ShieldSvg.tsx +23 -0
  889. package/lib/components/Icon/svgs/ShoppingBagSvg.tsx +30 -0
  890. package/lib/components/Icon/svgs/ShoppingCartSvg.tsx +33 -0
  891. package/lib/components/Icon/svgs/ShuffleSvg.tsx +42 -0
  892. package/lib/components/Icon/svgs/SidebarSvg.tsx +36 -0
  893. package/lib/components/Icon/svgs/SkipBackSvg.tsx +29 -0
  894. package/lib/components/Icon/svgs/SkipForwardSvg.tsx +29 -0
  895. package/lib/components/Icon/svgs/SlackSvg.tsx +30 -0
  896. package/lib/components/Icon/svgs/SlashSvg.tsx +33 -0
  897. package/lib/components/Icon/svgs/SlidersSvg.tsx +76 -0
  898. package/lib/components/Icon/svgs/SmartphoneSvg.tsx +36 -0
  899. package/lib/components/Icon/svgs/SmileSvg.tsx +40 -0
  900. package/lib/components/Icon/svgs/SpeakerSvg.tsx +41 -0
  901. package/lib/components/Icon/svgs/SquareSvg.tsx +30 -0
  902. package/lib/components/Icon/svgs/StarSvg.tsx +23 -0
  903. package/lib/components/Icon/svgs/StopCircleSvg.tsx +33 -0
  904. package/lib/components/Icon/svgs/SunSvg.tsx +75 -0
  905. package/lib/components/Icon/svgs/SunriseSvg.tsx +60 -0
  906. package/lib/components/Icon/svgs/SunsetSvg.tsx +60 -0
  907. package/lib/components/Icon/svgs/TableSvg.tsx +23 -0
  908. package/lib/components/Icon/svgs/TabletSvg.tsx +36 -0
  909. package/lib/components/Icon/svgs/TagSvg.tsx +29 -0
  910. package/lib/components/Icon/svgs/TargetSvg.tsx +37 -0
  911. package/lib/components/Icon/svgs/TerminalSvg.tsx +29 -0
  912. package/lib/components/Icon/svgs/ThermometerSvg.tsx +23 -0
  913. package/lib/components/Icon/svgs/ThumbsDownSvg.tsx +23 -0
  914. package/lib/components/Icon/svgs/ThumbsUpSvg.tsx +23 -0
  915. package/lib/components/Icon/svgs/ToggleLeftSvg.tsx +35 -0
  916. package/lib/components/Icon/svgs/ToggleRightSvg.tsx +35 -0
  917. package/lib/components/Icon/svgs/ToolSvg.tsx +23 -0
  918. package/lib/components/Icon/svgs/Trash2Svg.tsx +36 -0
  919. package/lib/components/Icon/svgs/TrashSvg.tsx +24 -0
  920. package/lib/components/Icon/svgs/TrelloSvg.tsx +42 -0
  921. package/lib/components/Icon/svgs/TrendingDownSvg.tsx +24 -0
  922. package/lib/components/Icon/svgs/TrendingUpSvg.tsx +24 -0
  923. package/lib/components/Icon/svgs/TriangleSvg.tsx +23 -0
  924. package/lib/components/Icon/svgs/TruckSvg.tsx +39 -0
  925. package/lib/components/Icon/svgs/TvSvg.tsx +31 -0
  926. package/lib/components/Icon/svgs/TwitchSvg.tsx +23 -0
  927. package/lib/components/Icon/svgs/TwitterSvg.tsx +23 -0
  928. package/lib/components/Icon/svgs/TypeSvg.tsx +35 -0
  929. package/lib/components/Icon/svgs/UmbrellaSvg.tsx +23 -0
  930. package/lib/components/Icon/svgs/UnderlineSvg.tsx +29 -0
  931. package/lib/components/Icon/svgs/UnlockSvg.tsx +31 -0
  932. package/lib/components/Icon/svgs/UploadCloudSvg.tsx +31 -0
  933. package/lib/components/Icon/svgs/UploadSvg.tsx +30 -0
  934. package/lib/components/Icon/svgs/UserCheckSvg.tsx +29 -0
  935. package/lib/components/Icon/svgs/UserMinusSvg.tsx +34 -0
  936. package/lib/components/Icon/svgs/UserPlusSvg.tsx +40 -0
  937. package/lib/components/Icon/svgs/UserSvg.tsx +30 -0
  938. package/lib/components/Icon/svgs/UserXSvg.tsx +40 -0
  939. package/lib/components/Icon/svgs/UsersSvg.tsx +30 -0
  940. package/lib/components/Icon/svgs/VideoOffSvg.tsx +29 -0
  941. package/lib/components/Icon/svgs/VideoSvg.tsx +31 -0
  942. package/lib/components/Icon/svgs/VoicemailSvg.tsx +38 -0
  943. package/lib/components/Icon/svgs/Volume1Svg.tsx +24 -0
  944. package/lib/components/Icon/svgs/Volume2Svg.tsx +24 -0
  945. package/lib/components/Icon/svgs/VolumeSvg.tsx +23 -0
  946. package/lib/components/Icon/svgs/VolumeXSvg.tsx +35 -0
  947. package/lib/components/Icon/svgs/WatchSvg.tsx +29 -0
  948. package/lib/components/Icon/svgs/WifiOffSvg.tsx +39 -0
  949. package/lib/components/Icon/svgs/WifiSvg.tsx +31 -0
  950. package/lib/components/Icon/svgs/WindSvg.tsx +23 -0
  951. package/lib/components/Icon/svgs/XCircleSvg.tsx +39 -0
  952. package/lib/components/Icon/svgs/XOctagonSvg.tsx +35 -0
  953. package/lib/components/Icon/svgs/XSquareSvg.tsx +42 -0
  954. package/lib/components/Icon/svgs/XSvg.tsx +34 -0
  955. package/lib/components/Icon/svgs/ZapOffSvg.tsx +31 -0
  956. package/lib/components/Icon/svgs/ZapSvg.tsx +23 -0
  957. package/lib/components/Icon/svgs/ZoomInSvg.tsx +45 -0
  958. package/lib/components/Icon/svgs/ZoomOutSvg.tsx +39 -0
  959. package/lib/components/Icon/svgs/internal/EmptySvg.tsx +23 -0
  960. package/lib/components/Icon/svgs/social/FacebookSvg.tsx +18 -0
  961. package/lib/components/Icon/svgs/social/FlickrSvg.tsx +19 -0
  962. package/lib/components/Icon/svgs/social/InstagramSvg.tsx +19 -0
  963. package/lib/components/Icon/svgs/social/SoundcloudSvg.tsx +22 -0
  964. package/lib/components/Icon/svgs/social/TiktokSvg.tsx +18 -0
  965. package/lib/components/Icon/svgs/social/XSvg.tsx +18 -0
  966. package/lib/components/Icon/svgs/social/YoutubeSvg.tsx +18 -0
  967. package/lib/components/Icon/svgs/social/reference-from-figma/Facebook-full.svg +10 -0
  968. package/lib/components/Icon/svgs/social/reference-from-figma/Facebook-line.svg +3 -0
  969. package/lib/components/Icon/svgs/social/reference-from-figma/Flickr.svg +4 -0
  970. package/lib/components/Icon/svgs/social/reference-from-figma/Git-line.svg +10 -0
  971. package/lib/components/Icon/svgs/social/reference-from-figma/Instagram-full.svg +4 -0
  972. package/lib/components/Icon/svgs/social/reference-from-figma/Instagram-line.svg +11 -0
  973. package/lib/components/Icon/svgs/social/reference-from-figma/Linkedin-full.svg +3 -0
  974. package/lib/components/Icon/svgs/social/reference-from-figma/Linkeding-line.svg +5 -0
  975. package/lib/components/Icon/svgs/social/reference-from-figma/Slack-line.svg +10 -0
  976. package/lib/components/Icon/svgs/social/reference-from-figma/Soundcloud.svg +3 -0
  977. package/lib/components/Icon/svgs/social/reference-from-figma/X.svg +3 -0
  978. package/lib/components/Icon/svgs/social/reference-from-figma/tok-tok.svg +3 -0
  979. package/lib/components/Icon/svgs/social/reference-from-figma/you-tube.svg +3 -0
  980. package/lib/components/IconButton/IconButton.stories.tsx +59 -0
  981. package/lib/components/IconButton/IconButton.tsx +71 -0
  982. package/lib/components/IconButton/__tests__/IconButton.test.tsx +110 -0
  983. package/lib/components/IconButton/__tests__/__snapshots__/IconButton.test.tsx.snap +77 -0
  984. package/lib/components/IconButton/index.ts +2 -0
  985. package/lib/components/Input/Documentation.mdx +94 -0
  986. package/lib/components/Input/Input.stories.tsx +60 -0
  987. package/lib/components/Input/Input.tsx +150 -0
  988. package/lib/components/Input/__tests__/Input.test.tsx +108 -0
  989. package/lib/components/Input/__tests__/__snapshots__/Input.test.tsx.snap +51 -0
  990. package/lib/components/Input/index.ts +2 -0
  991. package/lib/components/Label/Label.stories.tsx +47 -0
  992. package/lib/components/Label/Label.tsx +99 -0
  993. package/lib/components/Label/__tests__/Label.test.tsx +121 -0
  994. package/lib/components/Label/__tests__/__snapshots__/Label.test.tsx.snap +76 -0
  995. package/lib/components/Label/index.ts +2 -0
  996. package/lib/components/Layout/Layout.stories.tsx +461 -0
  997. package/lib/components/Layout/Layout.tsx +78 -0
  998. package/lib/components/Layout/__tests__/Layout.test.tsx +51 -0
  999. package/lib/components/Layout/__tests__/__snapshots__/Layout.test.tsx.snap +25 -0
  1000. package/lib/components/Layout/index.ts +2 -0
  1001. package/lib/components/Link/Link.stories.tsx +32 -0
  1002. package/lib/components/Link/Link.tsx +86 -0
  1003. package/lib/components/Link/__tests__/__snapshots__/link.test.tsx.snap +19 -0
  1004. package/lib/components/Link/__tests__/link.test.tsx +67 -0
  1005. package/lib/components/Link/index.ts +2 -0
  1006. package/lib/components/Menu/Menu.context.tsx +147 -0
  1007. package/lib/components/Menu/Menu.tsx +68 -0
  1008. package/lib/components/Menu/MenuContent.tsx +137 -0
  1009. package/lib/components/Menu/MenuItem.tsx +84 -0
  1010. package/lib/components/Menu/MenuSection.tsx +46 -0
  1011. package/lib/components/Menu/MenuTrigger.tsx +32 -0
  1012. package/lib/components/Menu/index.ts +8 -0
  1013. package/lib/components/Modal/Modal.stories.tsx +48 -0
  1014. package/lib/components/Modal/Modal.tsx +107 -0
  1015. package/lib/components/Modal/__tests__/Modal.test.tsx +17 -0
  1016. package/lib/components/Modal/__tests__/__snapshots__/Modal.test.tsx.snap +21 -0
  1017. package/lib/components/Modal/index.ts +2 -0
  1018. package/lib/components/Overlay/Overlay.stories.tsx +218 -0
  1019. package/lib/components/Overlay/Overlay.tsx +197 -0
  1020. package/lib/components/Overlay/index.ts +2 -0
  1021. package/lib/components/Pagination/Pagination.stories.tsx +62 -0
  1022. package/lib/components/Pagination/Pagination.tsx +81 -0
  1023. package/lib/components/Pagination/PaginationControls.tsx +172 -0
  1024. package/lib/components/Pagination/PaginationInfo.tsx +65 -0
  1025. package/lib/components/Pagination/__tests__/getPaginationButtons.test.ts +96 -0
  1026. package/lib/components/Pagination/getPaginationButtons.ts +51 -0
  1027. package/lib/components/Pagination/index.tsx +6 -0
  1028. package/lib/components/Paragraph/Paragraph.stories.tsx +134 -0
  1029. package/lib/components/Paragraph/Paragraph.tsx +95 -0
  1030. package/lib/components/Paragraph/__tests__/Paragraph.test.tsx +76 -0
  1031. package/lib/components/Paragraph/__tests__/__snapshots__/Paragraph.test.tsx.snap +46 -0
  1032. package/lib/components/Paragraph/index.ts +6 -0
  1033. package/lib/components/Radio/LabelledRadio.tsx +111 -0
  1034. package/lib/components/Radio/Radio.stories.tsx +30 -0
  1035. package/lib/components/Radio/Radio.tsx +138 -0
  1036. package/lib/components/Radio/__tests__/Radio.test.tsx +87 -0
  1037. package/lib/components/Radio/__tests__/__snapshots__/Radio.test.tsx.snap +41 -0
  1038. package/lib/components/Radio/index.ts +4 -0
  1039. package/lib/components/Select/Select.stories.tsx +27 -0
  1040. package/lib/components/Select/Select.tsx +82 -0
  1041. package/lib/components/Select/__tests__/Select.test.tsx +40 -0
  1042. package/lib/components/Select/__tests__/__snapshots__/Select.test.tsx.snap +42 -0
  1043. package/lib/components/Select/index.ts +2 -0
  1044. package/lib/components/Snackbar/Snackbar.stories.tsx +93 -0
  1045. package/lib/components/Snackbar/Snackbar.tsx +136 -0
  1046. package/lib/components/Snackbar/__tests__/Snackbar.test.tsx +134 -0
  1047. package/lib/components/Snackbar/__tests__/__snapshots__/Snackbar.test.tsx.snap +108 -0
  1048. package/lib/components/Snackbar/index.ts +2 -0
  1049. package/lib/components/Spinner/Spinner.stories.tsx +53 -0
  1050. package/lib/components/Spinner/Spinner.tsx +75 -0
  1051. package/lib/components/Spinner/__tests__/Spinner.test.tsx +41 -0
  1052. package/lib/components/Spinner/__tests__/__snapshots__/Spinner.test.tsx.snap +73 -0
  1053. package/lib/components/Spinner/index.tsx +2 -0
  1054. package/lib/components/Table/Table.tsx +68 -0
  1055. package/lib/components/Table/index.ts +2 -0
  1056. package/lib/components/Tabs/Tab.tsx +83 -0
  1057. package/lib/components/Tabs/TabContext.tsx +20 -0
  1058. package/lib/components/Tabs/Tabs.stories.tsx +89 -0
  1059. package/lib/components/Tabs/Tabs.tsx +98 -0
  1060. package/lib/components/Tabs/__tests__/Tabs.test.tsx +116 -0
  1061. package/lib/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +185 -0
  1062. package/lib/components/Tabs/index.ts +2 -0
  1063. package/lib/components/Textarea/Textarea.stories.tsx +55 -0
  1064. package/lib/components/Textarea/Textarea.tsx +107 -0
  1065. package/lib/components/Textarea/__tests__/Textarea.test.tsx +125 -0
  1066. package/lib/components/Textarea/__tests__/__snapshots__/Textarea.test.tsx.snap +35 -0
  1067. package/lib/components/Textarea/index.ts +2 -0
  1068. package/lib/components/Toggle/Documentation.mdx +114 -0
  1069. package/lib/components/Toggle/Toggle.stories.tsx +56 -0
  1070. package/lib/components/Toggle/Toggle.tsx +93 -0
  1071. package/lib/components/Toggle/ToggleHandle.tsx +46 -0
  1072. package/lib/components/Toggle/index.ts +2 -0
  1073. package/lib/components/Tooltip/Tooltip.stories.tsx +17 -0
  1074. package/lib/components/Tooltip/Tooltip.tsx +44 -0
  1075. package/lib/components/Tooltip/__tests__/__snapshots__/tooltip.test.tsx.snap +19 -0
  1076. package/lib/components/Tooltip/__tests__/tooltip.test.tsx +48 -0
  1077. package/lib/components/Tooltip/index.ts +2 -0
  1078. package/lib/components/UclLogo/UclLogo.stories.tsx +44 -0
  1079. package/lib/components/UclLogo/UclLogo.tsx +26 -0
  1080. package/lib/components/UclLogo/UclLogoNegativeSpace.tsx +39 -0
  1081. package/lib/components/UclLogo/__tests__/UclLogo.test.tsx +26 -0
  1082. package/lib/components/UclLogo/__tests__/__snapshots__/UclLogo.test.tsx.snap +36 -0
  1083. package/lib/components/UclLogo/index.ts +5 -0
  1084. package/lib/components/UclLogo/ucl-logo.svg +47 -0
  1085. package/lib/components/common/Common.mdx +82 -0
  1086. package/lib/components/common/marginsStyle.ts +103 -0
  1087. package/lib/components/index.ts +132 -0
  1088. package/lib/hooks/useMediaQuery.ts +25 -0
  1089. package/lib/index.ts +3 -0
  1090. package/lib/theme/Colours.mdx +44 -0
  1091. package/lib/theme/Icons.mdx +30 -0
  1092. package/lib/theme/Theme.mdx +25 -0
  1093. package/lib/theme/Typography.mdx +79 -0
  1094. package/lib/theme/defaultTheme.ts +423 -0
  1095. package/lib/theme/index.ts +10 -0
  1096. package/lib/theme/useTheme.tsx +34 -0
  1097. package/lib/types/image.d.ts +19 -0
  1098. package/package.json +100 -0
@@ -0,0 +1,935 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`Footer > snapshot: footer links provided 1`] = `
4
+ <div
5
+ class="ucl-uikit-footer css-mq639a"
6
+ data-testid="ucl-uikit-footer"
7
+ >
8
+ <div
9
+ class="css-w42uyy"
10
+ >
11
+ <nav
12
+ class="css-vj3rf"
13
+ />
14
+ <div
15
+ class="css-1h8jsb3"
16
+ >
17
+ <svg
18
+ class="css-2wjlk2"
19
+ fill="currentColor"
20
+ height="40"
21
+ viewBox="0 0 157 40"
22
+ width="157"
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ >
25
+ <desc>
26
+ Logo of University College London
27
+ </desc>
28
+ <path
29
+ d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
30
+ />
31
+ </svg>
32
+ <div
33
+ class="css-7d3f6x"
34
+ >
35
+ <a
36
+ aria-label="Facebook"
37
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
38
+ data-testid="ucl-uikit-footer__social-link"
39
+ href="https://www.facebook.com/uclofficial/"
40
+ target="_blank"
41
+ >
42
+ <svg
43
+ aria-hidden="true"
44
+ class="ucl-uikit-icon css-148hpxb"
45
+ data-testid="ucl-uikit-icon"
46
+ fill="currentColor"
47
+ height="24"
48
+ title="Facebook"
49
+ viewBox="0 0 24 24"
50
+ width="24"
51
+ xmlns="http://www.w3.org/2000/svg"
52
+ >
53
+ <title>
54
+ Facebook
55
+ </title>
56
+ <path
57
+ d="M24 12.0733C24 5.40541 18.6274 0 12 0C5.37258 0 0 5.40541 0 12.0733C0 18.0994 4.3882 23.0943 10.125 24V15.5633H7.07812V12.0733H10.125V9.41343C10.125 6.38755 11.9166 4.71615 14.6576 4.71615C15.9705 4.71615 17.3438 4.95195 17.3438 4.95195V7.92313H15.8306C14.34 7.92313 13.875 8.85386 13.875 9.80864V12.0733H17.2031L16.6711 15.5633H13.875V24C19.6118 23.0943 24 18.0994 24 12.0733Z"
58
+ />
59
+ </svg>
60
+ </a>
61
+ <a
62
+ aria-label="Flickr"
63
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
64
+ data-testid="ucl-uikit-footer__social-link"
65
+ href="https://www.flickr.com/groups/ucl/"
66
+ target="_blank"
67
+ >
68
+ <svg
69
+ aria-hidden="true"
70
+ class="ucl-uikit-icon css-148hpxb"
71
+ data-testid="ucl-uikit-icon"
72
+ fill="currentColor"
73
+ height="24"
74
+ title="Flickr"
75
+ viewBox="0 0 24 24"
76
+ width="24"
77
+ xmlns="http://www.w3.org/2000/svg"
78
+ >
79
+ <title>
80
+ Flickr
81
+ </title>
82
+ <path
83
+ d="M11 12C11 14.7614 8.76142 17 6 17C3.23858 17 1 14.7614 1 12C1 9.23858 3.23858 7 6 7C8.76142 7 11 9.23858 11 12Z"
84
+ />
85
+ <path
86
+ d="M23 12C23 14.7614 20.7614 17 18 17C15.2386 17 13 14.7614 13 12C13 9.23858 15.2386 7 18 7C20.7614 7 23 9.23858 23 12Z"
87
+ />
88
+ </svg>
89
+ </a>
90
+ <a
91
+ aria-label="TikTok"
92
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
93
+ data-testid="ucl-uikit-footer__social-link"
94
+ href="https://www.tiktok.com/@uclofficial"
95
+ target="_blank"
96
+ >
97
+ <svg
98
+ aria-hidden="true"
99
+ class="ucl-uikit-icon css-148hpxb"
100
+ data-testid="ucl-uikit-icon"
101
+ fill="currentColor"
102
+ height="24"
103
+ title="TikTok"
104
+ viewBox="0 0 24 24"
105
+ width="24"
106
+ xmlns="http://www.w3.org/2000/svg"
107
+ >
108
+ <title>
109
+ TikTok
110
+ </title>
111
+ <path
112
+ d="M18.4255 6.20955C17.3086 5.47455 16.4973 4.29091 16.2491 2.91636C16.1918 2.62045 16.1632 2.315 16.1632 2H12.5836V16.4709C12.5168 18.0936 11.1995 19.3918 9.57682 19.3918C9.07091 19.3918 8.60318 19.2677 8.18318 19.0386C7.22864 18.5327 6.57 17.5209 6.57 16.3564C6.57 14.6859 7.91591 13.3209 9.57682 13.3209C9.88227 13.3209 10.1782 13.3686 10.4645 13.4641V9.77954C10.1782 9.74136 9.88227 9.71273 9.57682 9.71273C5.94955 9.71273 3 12.6909 3 16.3564C3 18.6091 4.11682 20.5945 5.80636 21.7973C6.87545 22.5514 8.17364 23 9.57682 23C13.2041 23 16.1536 20.0218 16.1536 16.3564V9.01591C17.5568 10.0277 19.275 10.6291 21.1268 10.6291V7.02091C20.1245 7.02091 19.1986 6.725 18.4159 6.20955H18.4255Z"
113
+ />
114
+ </svg>
115
+ </a>
116
+ <a
117
+ aria-label="YouTube"
118
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
119
+ data-testid="ucl-uikit-footer__social-link"
120
+ href="https://www.youtube.com/ucltv"
121
+ target="_blank"
122
+ >
123
+ <svg
124
+ aria-hidden="true"
125
+ class="ucl-uikit-icon css-148hpxb"
126
+ data-testid="ucl-uikit-icon"
127
+ fill="currentColor"
128
+ height="24"
129
+ title="YouTube"
130
+ viewBox="0 0 24 24"
131
+ width="24"
132
+ xmlns="http://www.w3.org/2000/svg"
133
+ >
134
+ <title>
135
+ YouTube
136
+ </title>
137
+ <path
138
+ d="M22.5402 6.40849C22.2903 5.45909 21.5407 4.71955 20.5911 4.45971C18.8719 4 11.995 4 11.995 4C11.995 4 5.11813 4 3.40891 4.45971C2.45934 4.70956 1.71967 5.45909 1.45979 6.40849C1 8.12742 1 12.005 1 12.005C1 12.005 1 15.8826 1.45979 17.5915C1.70968 18.5409 2.45934 19.2804 3.40891 19.5403C5.11813 20 11.995 20 11.995 20C11.995 20 18.8719 20 20.5911 19.5403C21.5407 19.2904 22.2803 18.5409 22.5402 17.5915C23 15.8826 23 12.005 23 12.005C23 12.005 23 8.12742 22.5402 6.40849ZM10.0059 15.5028V8.50718L16.0032 12.005L10.0059 15.5028Z"
139
+ />
140
+ </svg>
141
+ </a>
142
+ <a
143
+ aria-label="SoundCloud"
144
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
145
+ data-testid="ucl-uikit-footer__social-link"
146
+ href="https://soundcloud.com/uclsound"
147
+ target="_blank"
148
+ >
149
+ <svg
150
+ aria-hidden="true"
151
+ class="ucl-uikit-icon css-148hpxb"
152
+ data-testid="ucl-uikit-icon"
153
+ fill="currentColor"
154
+ height="24"
155
+ title="SoundCloud"
156
+ viewBox="0 0 24 24"
157
+ width="24"
158
+ xmlns="http://www.w3.org/2000/svg"
159
+ >
160
+ <title>
161
+ SoundCloud
162
+ </title>
163
+ <path
164
+ clip-rule="evenodd"
165
+ d="M23.9869 14.6691C23.8888 16.4909 22.3837 17.92 20.5841 17.8873H12.4043C12.0335 17.8873 11.7281 17.5709 11.7281 17.2V8.25455C11.7172 7.93818 11.8917 7.65455 12.1753 7.52364C12.1862 7.53455 12.9387 7 14.5202 7C15.4908 7 16.4397 7.26182 17.2686 7.76364C18.5773 8.54909 19.5044 9.85818 19.8316 11.3636C20.1152 11.2873 20.4096 11.2436 20.7041 11.2436C21.5875 11.2436 22.4491 11.6036 23.0708 12.2473C23.6924 12.8909 24.0305 13.7636 23.9978 14.6691H23.9869ZM10.7138 8.82182C10.9647 11.8545 11.1392 14.6145 10.7138 17.6473C10.7029 17.7782 10.583 17.8873 10.4521 17.8873C10.3212 17.8873 10.2012 17.7782 10.1903 17.6473C9.7977 14.6473 9.96129 11.8327 10.1903 8.82182C10.1794 8.72364 10.223 8.61455 10.3103 8.56C10.3975 8.50545 10.5066 8.50545 10.5939 8.56C10.6811 8.61455 10.7247 8.71273 10.7138 8.82182ZM9.05606 17.6473C9.03425 17.7891 8.91428 17.8873 8.7834 17.8873C8.65252 17.8873 8.53255 17.7891 8.51074 17.6473C8.21627 15.0618 8.21627 12.4545 8.51074 9.86909C8.52165 9.72727 8.64162 9.61818 8.7834 9.61818C8.92518 9.61818 9.04515 9.72727 9.05606 9.86909C9.38325 12.4545 9.38325 15.0727 9.05606 17.6473ZM7.39829 9.59636C7.67095 12.3782 7.79092 14.8655 7.39829 17.6364C7.39829 17.7891 7.27832 17.9091 7.13653 17.9091C6.99475 17.9091 6.87478 17.7891 6.87478 17.6364C6.49306 14.8982 6.62393 12.3345 6.87478 9.59636C6.88569 9.45455 7.00566 9.35636 7.13653 9.35636C7.26741 9.35636 7.38738 9.46545 7.39829 9.59636ZM5.74051 17.6473C5.72961 17.7891 5.60964 17.8982 5.46785 17.8982C5.32607 17.8982 5.21701 17.7891 5.19519 17.6473C4.88981 15.2364 4.88981 12.7927 5.19519 10.3818C5.19519 10.2291 5.31516 10.0982 5.46785 10.0982C5.62054 10.0982 5.74051 10.2182 5.74051 10.3818C6.06771 12.7927 6.0568 15.2364 5.74051 17.6473ZM4.08274 12.1927C4.49718 14.08 4.31178 15.7382 4.07184 17.6582C4.05002 17.7891 3.94096 17.8764 3.81008 17.8764C3.6792 17.8764 3.57014 17.7782 3.55923 17.6582C3.3302 15.76 3.14479 14.0582 3.54833 12.1927C3.54833 12.04 3.6683 11.92 3.82099 11.92C3.97368 11.92 4.09365 12.04 4.09365 12.1927H4.08274ZM2.42497 11.9091C2.80669 13.84 2.68672 15.4764 2.42497 17.4073C2.39225 17.6909 1.91237 17.6909 1.87965 17.4073C1.63971 15.4982 1.51974 13.8182 1.87965 11.9091C1.89056 11.7673 2.02143 11.6582 2.16322 11.6582C2.305 11.6582 2.42497 11.7673 2.44678 11.9091H2.42497ZM0.75629 12.8473C1.15983 14.1236 1.01804 15.1709 0.745383 16.48C0.734477 16.6109 0.614506 16.72 0.48363 16.72C0.352753 16.72 0.232782 16.6218 0.221876 16.48C-0.0180648 15.1927 -0.116222 14.1345 0.200063 12.8473C0.21097 12.7055 0.33094 12.5964 0.48363 12.5964C0.636319 12.5964 0.745383 12.7055 0.767196 12.8473H0.75629Z"
166
+ fill-rule="evenodd"
167
+ />
168
+ </svg>
169
+ </a>
170
+ <a
171
+ aria-label="X social media platform"
172
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
173
+ data-testid="ucl-uikit-footer__social-link"
174
+ href="https://x.com/ucl"
175
+ target="_blank"
176
+ >
177
+ <svg
178
+ aria-hidden="true"
179
+ class="ucl-uikit-icon css-148hpxb"
180
+ data-testid="ucl-uikit-icon"
181
+ fill="currentColor"
182
+ height="24"
183
+ title="X social media platform"
184
+ viewBox="0 0 24 24"
185
+ width="24"
186
+ xmlns="http://www.w3.org/2000/svg"
187
+ >
188
+ <title>
189
+ X social media platform
190
+ </title>
191
+ <path
192
+ d="M13.6468 10.4686L20.9321 2H19.2057L12.8799 9.3532L7.82741 2H2L9.6403 13.1193L2 22H3.72649L10.4068 14.2348L15.7425 22H21.5699L13.6464 10.4686H13.6468ZM11.2821 13.2173L10.508 12.1101L4.34857 3.29968H7.00037L11.9711 10.4099L12.7452 11.5172L19.2066 20.7594H16.5548L11.2821 13.2177V13.2173Z"
193
+ />
194
+ </svg>
195
+ </a>
196
+ <a
197
+ aria-label="Instagram"
198
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
199
+ data-testid="ucl-uikit-footer__social-link"
200
+ href="https://www.instagram.com/ucl/"
201
+ target="_blank"
202
+ >
203
+ <svg
204
+ aria-hidden="true"
205
+ class="ucl-uikit-icon css-148hpxb"
206
+ data-testid="ucl-uikit-icon"
207
+ fill="currentColor"
208
+ height="24"
209
+ title="Instagram"
210
+ viewBox="0 0 24 24"
211
+ width="24"
212
+ xmlns="http://www.w3.org/2000/svg"
213
+ >
214
+ <title>
215
+ Instagram
216
+ </title>
217
+ <path
218
+ d="M11.9987 7.97012C9.77942 7.97012 7.97004 9.77951 7.97004 11.9987C7.97004 14.218 9.77942 16.0274 11.9987 16.0274C14.2179 16.0274 16.0273 14.218 16.0273 11.9987C16.0273 9.77951 14.2179 7.97012 11.9987 7.97012Z"
219
+ />
220
+ <path
221
+ d="M22.915 7.4603C22.8351 5.7009 22.4252 4.14143 21.1356 2.85187C19.8561 1.5723 18.2966 1.17244 16.5372 1.08247C14.7178 0.972509 9.27968 0.972509 7.4603 1.08247C5.7009 1.16244 4.14143 1.5723 2.85187 2.85187C1.56231 4.13143 1.17244 5.7009 1.08247 7.4603C0.972509 9.27968 0.972509 14.7178 1.08247 16.5372C1.16244 18.2966 1.5723 19.8561 2.86187 21.1456C4.15143 22.4352 5.71089 22.8351 7.47029 22.925C9.28967 23.025 14.7278 23.025 16.5372 22.925C18.2966 22.8451 19.8561 22.4352 21.1456 21.1456C22.4352 19.8561 22.8351 18.2966 22.925 16.5372C23.025 14.7178 23.025 9.27968 22.925 7.47029L22.915 7.4603ZM11.9987 18.1966C8.56992 18.1966 5.80086 15.4276 5.80086 11.9987C5.80086 8.56992 8.56992 5.80086 11.9987 5.80086C15.4276 5.80086 18.1966 8.56992 18.1966 11.9987C18.1966 15.4276 15.4276 18.1966 11.9987 18.1966ZM18.4565 6.99046C17.6568 6.99046 17.007 6.34068 17.007 5.54095C17.007 4.74122 17.6568 4.09145 18.4565 4.09145C19.2563 4.09145 19.9061 4.74122 19.9061 5.54095C19.9061 6.34068 19.2563 6.99046 18.4565 6.99046Z"
222
+ />
223
+ </svg>
224
+ </a>
225
+ </div>
226
+ </div>
227
+ <hr
228
+ class="ucl-divider css-wwimuq"
229
+ data-testid="ucl-divider"
230
+ role="separator"
231
+ />
232
+ <div
233
+ class="css-1ah386p"
234
+ >
235
+ <span
236
+ class="css-13yf1i2"
237
+ >
238
+ University College London, Gower Street, London, WC1E 6BT
239
+ </span>
240
+ <a
241
+ class="css-dkvsjm"
242
+ href="tel:+4402076792000"
243
+ >
244
+ Tel: +44 (0) 20 7679 2000
245
+ </a>
246
+ <span
247
+ class="css-bq4k8p"
248
+ >
249
+ ©
250
+ 2025
251
+ UCL
252
+ </span>
253
+ </div>
254
+ <div
255
+ class="css-1k5afze"
256
+ >
257
+ <a
258
+ class="css-16lix8i"
259
+ href="https://dictionary.cambridge.org/dictionary/english/disclaimer"
260
+ >
261
+ Disclaimer
262
+ </a>
263
+ <a
264
+ class="css-16lix8i"
265
+ href="https://www.legislation.gov.uk/ukpga/2000/36/contents"
266
+ >
267
+ Freedom of Information
268
+ </a>
269
+ <a
270
+ class="css-16lix8i"
271
+ href="https://developer.mozilla.org/en-US/docs/Web/Accessibility"
272
+ >
273
+ Accessibility
274
+ </a>
275
+ <a
276
+ class="css-16lix8i"
277
+ href="https://en.wikipedia.org/wiki/HTTP_cookie"
278
+ >
279
+ Cookies
280
+ </a>
281
+ <a
282
+ class="css-16lix8i"
283
+ href="https://dictionary.cambridge.org/dictionary/english/privacy"
284
+ >
285
+ Privacy
286
+ </a>
287
+ <a
288
+ class="css-16lix8i"
289
+ href="https://modern-slavery-statement-registry.service.gov.uk/"
290
+ >
291
+ Slavery statement
292
+ </a>
293
+ </div>
294
+ </div>
295
+ </div>
296
+ `;
297
+
298
+ exports[`Footer > snapshot: nav links 1`] = `
299
+ <div
300
+ class="ucl-uikit-footer css-mq639a"
301
+ data-testid="ucl-uikit-footer"
302
+ >
303
+ <div
304
+ class="css-w42uyy"
305
+ >
306
+ <nav
307
+ class="css-vj3rf"
308
+ >
309
+ <div
310
+ class="ucl-uikit-footer__column css-1r2b4zz"
311
+ data-testid="ucl-uikit-footer__column"
312
+ >
313
+ <h3
314
+ class="css-7bhh44"
315
+ >
316
+ Category 1
317
+ </h3>
318
+ <a
319
+ class="ucl-link ucl-uikit-footer__nav-link css-kdejd1"
320
+ data-testid="ucl-uikit-footer__nav-link"
321
+ href="#"
322
+ >
323
+ Item 1
324
+ </a>
325
+ <a
326
+ class="ucl-link ucl-uikit-footer__nav-link css-kdejd1"
327
+ data-testid="ucl-uikit-footer__nav-link"
328
+ href="#"
329
+ >
330
+ Item 2
331
+ </a>
332
+ </div>
333
+ <div
334
+ class="ucl-uikit-footer__column css-1r2b4zz"
335
+ data-testid="ucl-uikit-footer__column"
336
+ >
337
+ <h3
338
+ class="css-7bhh44"
339
+ >
340
+ Category 2
341
+ </h3>
342
+ <a
343
+ class="ucl-link ucl-uikit-footer__nav-link css-kdejd1"
344
+ data-testid="ucl-uikit-footer__nav-link"
345
+ href="#"
346
+ >
347
+ Item 1
348
+ </a>
349
+ <a
350
+ class="ucl-link ucl-uikit-footer__nav-link css-kdejd1"
351
+ data-testid="ucl-uikit-footer__nav-link"
352
+ href="#"
353
+ >
354
+ Item 2
355
+ </a>
356
+ </div>
357
+ </nav>
358
+ <div
359
+ class="css-1h8jsb3"
360
+ >
361
+ <svg
362
+ class="css-2wjlk2"
363
+ fill="currentColor"
364
+ height="40"
365
+ viewBox="0 0 157 40"
366
+ width="157"
367
+ xmlns="http://www.w3.org/2000/svg"
368
+ >
369
+ <desc>
370
+ Logo of University College London
371
+ </desc>
372
+ <path
373
+ d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
374
+ />
375
+ </svg>
376
+ <div
377
+ class="css-7d3f6x"
378
+ >
379
+ <a
380
+ aria-label="Facebook"
381
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
382
+ data-testid="ucl-uikit-footer__social-link"
383
+ href="https://www.facebook.com/uclofficial/"
384
+ target="_blank"
385
+ >
386
+ <svg
387
+ aria-hidden="true"
388
+ class="ucl-uikit-icon css-148hpxb"
389
+ data-testid="ucl-uikit-icon"
390
+ fill="currentColor"
391
+ height="24"
392
+ title="Facebook"
393
+ viewBox="0 0 24 24"
394
+ width="24"
395
+ xmlns="http://www.w3.org/2000/svg"
396
+ >
397
+ <title>
398
+ Facebook
399
+ </title>
400
+ <path
401
+ d="M24 12.0733C24 5.40541 18.6274 0 12 0C5.37258 0 0 5.40541 0 12.0733C0 18.0994 4.3882 23.0943 10.125 24V15.5633H7.07812V12.0733H10.125V9.41343C10.125 6.38755 11.9166 4.71615 14.6576 4.71615C15.9705 4.71615 17.3438 4.95195 17.3438 4.95195V7.92313H15.8306C14.34 7.92313 13.875 8.85386 13.875 9.80864V12.0733H17.2031L16.6711 15.5633H13.875V24C19.6118 23.0943 24 18.0994 24 12.0733Z"
402
+ />
403
+ </svg>
404
+ </a>
405
+ <a
406
+ aria-label="Flickr"
407
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
408
+ data-testid="ucl-uikit-footer__social-link"
409
+ href="https://www.flickr.com/groups/ucl/"
410
+ target="_blank"
411
+ >
412
+ <svg
413
+ aria-hidden="true"
414
+ class="ucl-uikit-icon css-148hpxb"
415
+ data-testid="ucl-uikit-icon"
416
+ fill="currentColor"
417
+ height="24"
418
+ title="Flickr"
419
+ viewBox="0 0 24 24"
420
+ width="24"
421
+ xmlns="http://www.w3.org/2000/svg"
422
+ >
423
+ <title>
424
+ Flickr
425
+ </title>
426
+ <path
427
+ d="M11 12C11 14.7614 8.76142 17 6 17C3.23858 17 1 14.7614 1 12C1 9.23858 3.23858 7 6 7C8.76142 7 11 9.23858 11 12Z"
428
+ />
429
+ <path
430
+ d="M23 12C23 14.7614 20.7614 17 18 17C15.2386 17 13 14.7614 13 12C13 9.23858 15.2386 7 18 7C20.7614 7 23 9.23858 23 12Z"
431
+ />
432
+ </svg>
433
+ </a>
434
+ <a
435
+ aria-label="TikTok"
436
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
437
+ data-testid="ucl-uikit-footer__social-link"
438
+ href="https://www.tiktok.com/@uclofficial"
439
+ target="_blank"
440
+ >
441
+ <svg
442
+ aria-hidden="true"
443
+ class="ucl-uikit-icon css-148hpxb"
444
+ data-testid="ucl-uikit-icon"
445
+ fill="currentColor"
446
+ height="24"
447
+ title="TikTok"
448
+ viewBox="0 0 24 24"
449
+ width="24"
450
+ xmlns="http://www.w3.org/2000/svg"
451
+ >
452
+ <title>
453
+ TikTok
454
+ </title>
455
+ <path
456
+ d="M18.4255 6.20955C17.3086 5.47455 16.4973 4.29091 16.2491 2.91636C16.1918 2.62045 16.1632 2.315 16.1632 2H12.5836V16.4709C12.5168 18.0936 11.1995 19.3918 9.57682 19.3918C9.07091 19.3918 8.60318 19.2677 8.18318 19.0386C7.22864 18.5327 6.57 17.5209 6.57 16.3564C6.57 14.6859 7.91591 13.3209 9.57682 13.3209C9.88227 13.3209 10.1782 13.3686 10.4645 13.4641V9.77954C10.1782 9.74136 9.88227 9.71273 9.57682 9.71273C5.94955 9.71273 3 12.6909 3 16.3564C3 18.6091 4.11682 20.5945 5.80636 21.7973C6.87545 22.5514 8.17364 23 9.57682 23C13.2041 23 16.1536 20.0218 16.1536 16.3564V9.01591C17.5568 10.0277 19.275 10.6291 21.1268 10.6291V7.02091C20.1245 7.02091 19.1986 6.725 18.4159 6.20955H18.4255Z"
457
+ />
458
+ </svg>
459
+ </a>
460
+ <a
461
+ aria-label="YouTube"
462
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
463
+ data-testid="ucl-uikit-footer__social-link"
464
+ href="https://www.youtube.com/ucltv"
465
+ target="_blank"
466
+ >
467
+ <svg
468
+ aria-hidden="true"
469
+ class="ucl-uikit-icon css-148hpxb"
470
+ data-testid="ucl-uikit-icon"
471
+ fill="currentColor"
472
+ height="24"
473
+ title="YouTube"
474
+ viewBox="0 0 24 24"
475
+ width="24"
476
+ xmlns="http://www.w3.org/2000/svg"
477
+ >
478
+ <title>
479
+ YouTube
480
+ </title>
481
+ <path
482
+ d="M22.5402 6.40849C22.2903 5.45909 21.5407 4.71955 20.5911 4.45971C18.8719 4 11.995 4 11.995 4C11.995 4 5.11813 4 3.40891 4.45971C2.45934 4.70956 1.71967 5.45909 1.45979 6.40849C1 8.12742 1 12.005 1 12.005C1 12.005 1 15.8826 1.45979 17.5915C1.70968 18.5409 2.45934 19.2804 3.40891 19.5403C5.11813 20 11.995 20 11.995 20C11.995 20 18.8719 20 20.5911 19.5403C21.5407 19.2904 22.2803 18.5409 22.5402 17.5915C23 15.8826 23 12.005 23 12.005C23 12.005 23 8.12742 22.5402 6.40849ZM10.0059 15.5028V8.50718L16.0032 12.005L10.0059 15.5028Z"
483
+ />
484
+ </svg>
485
+ </a>
486
+ <a
487
+ aria-label="SoundCloud"
488
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
489
+ data-testid="ucl-uikit-footer__social-link"
490
+ href="https://soundcloud.com/uclsound"
491
+ target="_blank"
492
+ >
493
+ <svg
494
+ aria-hidden="true"
495
+ class="ucl-uikit-icon css-148hpxb"
496
+ data-testid="ucl-uikit-icon"
497
+ fill="currentColor"
498
+ height="24"
499
+ title="SoundCloud"
500
+ viewBox="0 0 24 24"
501
+ width="24"
502
+ xmlns="http://www.w3.org/2000/svg"
503
+ >
504
+ <title>
505
+ SoundCloud
506
+ </title>
507
+ <path
508
+ clip-rule="evenodd"
509
+ d="M23.9869 14.6691C23.8888 16.4909 22.3837 17.92 20.5841 17.8873H12.4043C12.0335 17.8873 11.7281 17.5709 11.7281 17.2V8.25455C11.7172 7.93818 11.8917 7.65455 12.1753 7.52364C12.1862 7.53455 12.9387 7 14.5202 7C15.4908 7 16.4397 7.26182 17.2686 7.76364C18.5773 8.54909 19.5044 9.85818 19.8316 11.3636C20.1152 11.2873 20.4096 11.2436 20.7041 11.2436C21.5875 11.2436 22.4491 11.6036 23.0708 12.2473C23.6924 12.8909 24.0305 13.7636 23.9978 14.6691H23.9869ZM10.7138 8.82182C10.9647 11.8545 11.1392 14.6145 10.7138 17.6473C10.7029 17.7782 10.583 17.8873 10.4521 17.8873C10.3212 17.8873 10.2012 17.7782 10.1903 17.6473C9.7977 14.6473 9.96129 11.8327 10.1903 8.82182C10.1794 8.72364 10.223 8.61455 10.3103 8.56C10.3975 8.50545 10.5066 8.50545 10.5939 8.56C10.6811 8.61455 10.7247 8.71273 10.7138 8.82182ZM9.05606 17.6473C9.03425 17.7891 8.91428 17.8873 8.7834 17.8873C8.65252 17.8873 8.53255 17.7891 8.51074 17.6473C8.21627 15.0618 8.21627 12.4545 8.51074 9.86909C8.52165 9.72727 8.64162 9.61818 8.7834 9.61818C8.92518 9.61818 9.04515 9.72727 9.05606 9.86909C9.38325 12.4545 9.38325 15.0727 9.05606 17.6473ZM7.39829 9.59636C7.67095 12.3782 7.79092 14.8655 7.39829 17.6364C7.39829 17.7891 7.27832 17.9091 7.13653 17.9091C6.99475 17.9091 6.87478 17.7891 6.87478 17.6364C6.49306 14.8982 6.62393 12.3345 6.87478 9.59636C6.88569 9.45455 7.00566 9.35636 7.13653 9.35636C7.26741 9.35636 7.38738 9.46545 7.39829 9.59636ZM5.74051 17.6473C5.72961 17.7891 5.60964 17.8982 5.46785 17.8982C5.32607 17.8982 5.21701 17.7891 5.19519 17.6473C4.88981 15.2364 4.88981 12.7927 5.19519 10.3818C5.19519 10.2291 5.31516 10.0982 5.46785 10.0982C5.62054 10.0982 5.74051 10.2182 5.74051 10.3818C6.06771 12.7927 6.0568 15.2364 5.74051 17.6473ZM4.08274 12.1927C4.49718 14.08 4.31178 15.7382 4.07184 17.6582C4.05002 17.7891 3.94096 17.8764 3.81008 17.8764C3.6792 17.8764 3.57014 17.7782 3.55923 17.6582C3.3302 15.76 3.14479 14.0582 3.54833 12.1927C3.54833 12.04 3.6683 11.92 3.82099 11.92C3.97368 11.92 4.09365 12.04 4.09365 12.1927H4.08274ZM2.42497 11.9091C2.80669 13.84 2.68672 15.4764 2.42497 17.4073C2.39225 17.6909 1.91237 17.6909 1.87965 17.4073C1.63971 15.4982 1.51974 13.8182 1.87965 11.9091C1.89056 11.7673 2.02143 11.6582 2.16322 11.6582C2.305 11.6582 2.42497 11.7673 2.44678 11.9091H2.42497ZM0.75629 12.8473C1.15983 14.1236 1.01804 15.1709 0.745383 16.48C0.734477 16.6109 0.614506 16.72 0.48363 16.72C0.352753 16.72 0.232782 16.6218 0.221876 16.48C-0.0180648 15.1927 -0.116222 14.1345 0.200063 12.8473C0.21097 12.7055 0.33094 12.5964 0.48363 12.5964C0.636319 12.5964 0.745383 12.7055 0.767196 12.8473H0.75629Z"
510
+ fill-rule="evenodd"
511
+ />
512
+ </svg>
513
+ </a>
514
+ <a
515
+ aria-label="X social media platform"
516
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
517
+ data-testid="ucl-uikit-footer__social-link"
518
+ href="https://x.com/ucl"
519
+ target="_blank"
520
+ >
521
+ <svg
522
+ aria-hidden="true"
523
+ class="ucl-uikit-icon css-148hpxb"
524
+ data-testid="ucl-uikit-icon"
525
+ fill="currentColor"
526
+ height="24"
527
+ title="X social media platform"
528
+ viewBox="0 0 24 24"
529
+ width="24"
530
+ xmlns="http://www.w3.org/2000/svg"
531
+ >
532
+ <title>
533
+ X social media platform
534
+ </title>
535
+ <path
536
+ d="M13.6468 10.4686L20.9321 2H19.2057L12.8799 9.3532L7.82741 2H2L9.6403 13.1193L2 22H3.72649L10.4068 14.2348L15.7425 22H21.5699L13.6464 10.4686H13.6468ZM11.2821 13.2173L10.508 12.1101L4.34857 3.29968H7.00037L11.9711 10.4099L12.7452 11.5172L19.2066 20.7594H16.5548L11.2821 13.2177V13.2173Z"
537
+ />
538
+ </svg>
539
+ </a>
540
+ <a
541
+ aria-label="Instagram"
542
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
543
+ data-testid="ucl-uikit-footer__social-link"
544
+ href="https://www.instagram.com/ucl/"
545
+ target="_blank"
546
+ >
547
+ <svg
548
+ aria-hidden="true"
549
+ class="ucl-uikit-icon css-148hpxb"
550
+ data-testid="ucl-uikit-icon"
551
+ fill="currentColor"
552
+ height="24"
553
+ title="Instagram"
554
+ viewBox="0 0 24 24"
555
+ width="24"
556
+ xmlns="http://www.w3.org/2000/svg"
557
+ >
558
+ <title>
559
+ Instagram
560
+ </title>
561
+ <path
562
+ d="M11.9987 7.97012C9.77942 7.97012 7.97004 9.77951 7.97004 11.9987C7.97004 14.218 9.77942 16.0274 11.9987 16.0274C14.2179 16.0274 16.0273 14.218 16.0273 11.9987C16.0273 9.77951 14.2179 7.97012 11.9987 7.97012Z"
563
+ />
564
+ <path
565
+ d="M22.915 7.4603C22.8351 5.7009 22.4252 4.14143 21.1356 2.85187C19.8561 1.5723 18.2966 1.17244 16.5372 1.08247C14.7178 0.972509 9.27968 0.972509 7.4603 1.08247C5.7009 1.16244 4.14143 1.5723 2.85187 2.85187C1.56231 4.13143 1.17244 5.7009 1.08247 7.4603C0.972509 9.27968 0.972509 14.7178 1.08247 16.5372C1.16244 18.2966 1.5723 19.8561 2.86187 21.1456C4.15143 22.4352 5.71089 22.8351 7.47029 22.925C9.28967 23.025 14.7278 23.025 16.5372 22.925C18.2966 22.8451 19.8561 22.4352 21.1456 21.1456C22.4352 19.8561 22.8351 18.2966 22.925 16.5372C23.025 14.7178 23.025 9.27968 22.925 7.47029L22.915 7.4603ZM11.9987 18.1966C8.56992 18.1966 5.80086 15.4276 5.80086 11.9987C5.80086 8.56992 8.56992 5.80086 11.9987 5.80086C15.4276 5.80086 18.1966 8.56992 18.1966 11.9987C18.1966 15.4276 15.4276 18.1966 11.9987 18.1966ZM18.4565 6.99046C17.6568 6.99046 17.007 6.34068 17.007 5.54095C17.007 4.74122 17.6568 4.09145 18.4565 4.09145C19.2563 4.09145 19.9061 4.74122 19.9061 5.54095C19.9061 6.34068 19.2563 6.99046 18.4565 6.99046Z"
566
+ />
567
+ </svg>
568
+ </a>
569
+ </div>
570
+ </div>
571
+ <hr
572
+ class="ucl-divider css-wwimuq"
573
+ data-testid="ucl-divider"
574
+ role="separator"
575
+ />
576
+ <div
577
+ class="css-1ah386p"
578
+ >
579
+ <span
580
+ class="css-13yf1i2"
581
+ >
582
+ University College London, Gower Street, London, WC1E 6BT
583
+ </span>
584
+ <a
585
+ class="css-dkvsjm"
586
+ href="tel:+4402076792000"
587
+ >
588
+ Tel: +44 (0) 20 7679 2000
589
+ </a>
590
+ <span
591
+ class="css-bq4k8p"
592
+ >
593
+ ©
594
+ 2025
595
+ UCL
596
+ </span>
597
+ </div>
598
+ <div
599
+ class="css-1k5afze"
600
+ >
601
+ <a
602
+ class="css-16lix8i"
603
+ href="https://www.ucl.ac.uk/legal-services/disclaimer"
604
+ >
605
+ Disclaimer
606
+ </a>
607
+ <a
608
+ class="css-16lix8i"
609
+ href="https://www.ucl.ac.uk/foi"
610
+ >
611
+ Freedom of Information
612
+ </a>
613
+ <a
614
+ class="css-16lix8i"
615
+ href="https://www.ucl.ac.uk/accessibility"
616
+ >
617
+ Accessibility
618
+ </a>
619
+ <a
620
+ class="css-16lix8i"
621
+ href="https://www.ucl.ac.uk/legal-services/privacy/cookie-policy"
622
+ >
623
+ Cookies
624
+ </a>
625
+ <a
626
+ class="css-16lix8i"
627
+ href="https://www.ucl.ac.uk/legal-services/privacy"
628
+ >
629
+ Privacy
630
+ </a>
631
+ <a
632
+ class="css-16lix8i"
633
+ href="https://www.ucl.ac.uk/commercial-procurement/modern-day-slavery-statement"
634
+ >
635
+ Slavery statement
636
+ </a>
637
+ </div>
638
+ </div>
639
+ </div>
640
+ `;
641
+
642
+ exports[`Footer > snapshot: no nav links 1`] = `
643
+ <div
644
+ class="ucl-uikit-footer css-mq639a"
645
+ data-testid="ucl-uikit-footer"
646
+ >
647
+ <div
648
+ class="css-w42uyy"
649
+ >
650
+ <nav
651
+ class="css-vj3rf"
652
+ />
653
+ <div
654
+ class="css-1h8jsb3"
655
+ >
656
+ <svg
657
+ class="css-2wjlk2"
658
+ fill="currentColor"
659
+ height="40"
660
+ viewBox="0 0 157 40"
661
+ width="157"
662
+ xmlns="http://www.w3.org/2000/svg"
663
+ >
664
+ <desc>
665
+ Logo of University College London
666
+ </desc>
667
+ <path
668
+ d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
669
+ />
670
+ </svg>
671
+ <div
672
+ class="css-7d3f6x"
673
+ >
674
+ <a
675
+ aria-label="Facebook"
676
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
677
+ data-testid="ucl-uikit-footer__social-link"
678
+ href="https://www.facebook.com/uclofficial/"
679
+ target="_blank"
680
+ >
681
+ <svg
682
+ aria-hidden="true"
683
+ class="ucl-uikit-icon css-148hpxb"
684
+ data-testid="ucl-uikit-icon"
685
+ fill="currentColor"
686
+ height="24"
687
+ title="Facebook"
688
+ viewBox="0 0 24 24"
689
+ width="24"
690
+ xmlns="http://www.w3.org/2000/svg"
691
+ >
692
+ <title>
693
+ Facebook
694
+ </title>
695
+ <path
696
+ d="M24 12.0733C24 5.40541 18.6274 0 12 0C5.37258 0 0 5.40541 0 12.0733C0 18.0994 4.3882 23.0943 10.125 24V15.5633H7.07812V12.0733H10.125V9.41343C10.125 6.38755 11.9166 4.71615 14.6576 4.71615C15.9705 4.71615 17.3438 4.95195 17.3438 4.95195V7.92313H15.8306C14.34 7.92313 13.875 8.85386 13.875 9.80864V12.0733H17.2031L16.6711 15.5633H13.875V24C19.6118 23.0943 24 18.0994 24 12.0733Z"
697
+ />
698
+ </svg>
699
+ </a>
700
+ <a
701
+ aria-label="Flickr"
702
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
703
+ data-testid="ucl-uikit-footer__social-link"
704
+ href="https://www.flickr.com/groups/ucl/"
705
+ target="_blank"
706
+ >
707
+ <svg
708
+ aria-hidden="true"
709
+ class="ucl-uikit-icon css-148hpxb"
710
+ data-testid="ucl-uikit-icon"
711
+ fill="currentColor"
712
+ height="24"
713
+ title="Flickr"
714
+ viewBox="0 0 24 24"
715
+ width="24"
716
+ xmlns="http://www.w3.org/2000/svg"
717
+ >
718
+ <title>
719
+ Flickr
720
+ </title>
721
+ <path
722
+ d="M11 12C11 14.7614 8.76142 17 6 17C3.23858 17 1 14.7614 1 12C1 9.23858 3.23858 7 6 7C8.76142 7 11 9.23858 11 12Z"
723
+ />
724
+ <path
725
+ d="M23 12C23 14.7614 20.7614 17 18 17C15.2386 17 13 14.7614 13 12C13 9.23858 15.2386 7 18 7C20.7614 7 23 9.23858 23 12Z"
726
+ />
727
+ </svg>
728
+ </a>
729
+ <a
730
+ aria-label="TikTok"
731
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
732
+ data-testid="ucl-uikit-footer__social-link"
733
+ href="https://www.tiktok.com/@uclofficial"
734
+ target="_blank"
735
+ >
736
+ <svg
737
+ aria-hidden="true"
738
+ class="ucl-uikit-icon css-148hpxb"
739
+ data-testid="ucl-uikit-icon"
740
+ fill="currentColor"
741
+ height="24"
742
+ title="TikTok"
743
+ viewBox="0 0 24 24"
744
+ width="24"
745
+ xmlns="http://www.w3.org/2000/svg"
746
+ >
747
+ <title>
748
+ TikTok
749
+ </title>
750
+ <path
751
+ d="M18.4255 6.20955C17.3086 5.47455 16.4973 4.29091 16.2491 2.91636C16.1918 2.62045 16.1632 2.315 16.1632 2H12.5836V16.4709C12.5168 18.0936 11.1995 19.3918 9.57682 19.3918C9.07091 19.3918 8.60318 19.2677 8.18318 19.0386C7.22864 18.5327 6.57 17.5209 6.57 16.3564C6.57 14.6859 7.91591 13.3209 9.57682 13.3209C9.88227 13.3209 10.1782 13.3686 10.4645 13.4641V9.77954C10.1782 9.74136 9.88227 9.71273 9.57682 9.71273C5.94955 9.71273 3 12.6909 3 16.3564C3 18.6091 4.11682 20.5945 5.80636 21.7973C6.87545 22.5514 8.17364 23 9.57682 23C13.2041 23 16.1536 20.0218 16.1536 16.3564V9.01591C17.5568 10.0277 19.275 10.6291 21.1268 10.6291V7.02091C20.1245 7.02091 19.1986 6.725 18.4159 6.20955H18.4255Z"
752
+ />
753
+ </svg>
754
+ </a>
755
+ <a
756
+ aria-label="YouTube"
757
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
758
+ data-testid="ucl-uikit-footer__social-link"
759
+ href="https://www.youtube.com/ucltv"
760
+ target="_blank"
761
+ >
762
+ <svg
763
+ aria-hidden="true"
764
+ class="ucl-uikit-icon css-148hpxb"
765
+ data-testid="ucl-uikit-icon"
766
+ fill="currentColor"
767
+ height="24"
768
+ title="YouTube"
769
+ viewBox="0 0 24 24"
770
+ width="24"
771
+ xmlns="http://www.w3.org/2000/svg"
772
+ >
773
+ <title>
774
+ YouTube
775
+ </title>
776
+ <path
777
+ d="M22.5402 6.40849C22.2903 5.45909 21.5407 4.71955 20.5911 4.45971C18.8719 4 11.995 4 11.995 4C11.995 4 5.11813 4 3.40891 4.45971C2.45934 4.70956 1.71967 5.45909 1.45979 6.40849C1 8.12742 1 12.005 1 12.005C1 12.005 1 15.8826 1.45979 17.5915C1.70968 18.5409 2.45934 19.2804 3.40891 19.5403C5.11813 20 11.995 20 11.995 20C11.995 20 18.8719 20 20.5911 19.5403C21.5407 19.2904 22.2803 18.5409 22.5402 17.5915C23 15.8826 23 12.005 23 12.005C23 12.005 23 8.12742 22.5402 6.40849ZM10.0059 15.5028V8.50718L16.0032 12.005L10.0059 15.5028Z"
778
+ />
779
+ </svg>
780
+ </a>
781
+ <a
782
+ aria-label="SoundCloud"
783
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
784
+ data-testid="ucl-uikit-footer__social-link"
785
+ href="https://soundcloud.com/uclsound"
786
+ target="_blank"
787
+ >
788
+ <svg
789
+ aria-hidden="true"
790
+ class="ucl-uikit-icon css-148hpxb"
791
+ data-testid="ucl-uikit-icon"
792
+ fill="currentColor"
793
+ height="24"
794
+ title="SoundCloud"
795
+ viewBox="0 0 24 24"
796
+ width="24"
797
+ xmlns="http://www.w3.org/2000/svg"
798
+ >
799
+ <title>
800
+ SoundCloud
801
+ </title>
802
+ <path
803
+ clip-rule="evenodd"
804
+ d="M23.9869 14.6691C23.8888 16.4909 22.3837 17.92 20.5841 17.8873H12.4043C12.0335 17.8873 11.7281 17.5709 11.7281 17.2V8.25455C11.7172 7.93818 11.8917 7.65455 12.1753 7.52364C12.1862 7.53455 12.9387 7 14.5202 7C15.4908 7 16.4397 7.26182 17.2686 7.76364C18.5773 8.54909 19.5044 9.85818 19.8316 11.3636C20.1152 11.2873 20.4096 11.2436 20.7041 11.2436C21.5875 11.2436 22.4491 11.6036 23.0708 12.2473C23.6924 12.8909 24.0305 13.7636 23.9978 14.6691H23.9869ZM10.7138 8.82182C10.9647 11.8545 11.1392 14.6145 10.7138 17.6473C10.7029 17.7782 10.583 17.8873 10.4521 17.8873C10.3212 17.8873 10.2012 17.7782 10.1903 17.6473C9.7977 14.6473 9.96129 11.8327 10.1903 8.82182C10.1794 8.72364 10.223 8.61455 10.3103 8.56C10.3975 8.50545 10.5066 8.50545 10.5939 8.56C10.6811 8.61455 10.7247 8.71273 10.7138 8.82182ZM9.05606 17.6473C9.03425 17.7891 8.91428 17.8873 8.7834 17.8873C8.65252 17.8873 8.53255 17.7891 8.51074 17.6473C8.21627 15.0618 8.21627 12.4545 8.51074 9.86909C8.52165 9.72727 8.64162 9.61818 8.7834 9.61818C8.92518 9.61818 9.04515 9.72727 9.05606 9.86909C9.38325 12.4545 9.38325 15.0727 9.05606 17.6473ZM7.39829 9.59636C7.67095 12.3782 7.79092 14.8655 7.39829 17.6364C7.39829 17.7891 7.27832 17.9091 7.13653 17.9091C6.99475 17.9091 6.87478 17.7891 6.87478 17.6364C6.49306 14.8982 6.62393 12.3345 6.87478 9.59636C6.88569 9.45455 7.00566 9.35636 7.13653 9.35636C7.26741 9.35636 7.38738 9.46545 7.39829 9.59636ZM5.74051 17.6473C5.72961 17.7891 5.60964 17.8982 5.46785 17.8982C5.32607 17.8982 5.21701 17.7891 5.19519 17.6473C4.88981 15.2364 4.88981 12.7927 5.19519 10.3818C5.19519 10.2291 5.31516 10.0982 5.46785 10.0982C5.62054 10.0982 5.74051 10.2182 5.74051 10.3818C6.06771 12.7927 6.0568 15.2364 5.74051 17.6473ZM4.08274 12.1927C4.49718 14.08 4.31178 15.7382 4.07184 17.6582C4.05002 17.7891 3.94096 17.8764 3.81008 17.8764C3.6792 17.8764 3.57014 17.7782 3.55923 17.6582C3.3302 15.76 3.14479 14.0582 3.54833 12.1927C3.54833 12.04 3.6683 11.92 3.82099 11.92C3.97368 11.92 4.09365 12.04 4.09365 12.1927H4.08274ZM2.42497 11.9091C2.80669 13.84 2.68672 15.4764 2.42497 17.4073C2.39225 17.6909 1.91237 17.6909 1.87965 17.4073C1.63971 15.4982 1.51974 13.8182 1.87965 11.9091C1.89056 11.7673 2.02143 11.6582 2.16322 11.6582C2.305 11.6582 2.42497 11.7673 2.44678 11.9091H2.42497ZM0.75629 12.8473C1.15983 14.1236 1.01804 15.1709 0.745383 16.48C0.734477 16.6109 0.614506 16.72 0.48363 16.72C0.352753 16.72 0.232782 16.6218 0.221876 16.48C-0.0180648 15.1927 -0.116222 14.1345 0.200063 12.8473C0.21097 12.7055 0.33094 12.5964 0.48363 12.5964C0.636319 12.5964 0.745383 12.7055 0.767196 12.8473H0.75629Z"
805
+ fill-rule="evenodd"
806
+ />
807
+ </svg>
808
+ </a>
809
+ <a
810
+ aria-label="X social media platform"
811
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
812
+ data-testid="ucl-uikit-footer__social-link"
813
+ href="https://x.com/ucl"
814
+ target="_blank"
815
+ >
816
+ <svg
817
+ aria-hidden="true"
818
+ class="ucl-uikit-icon css-148hpxb"
819
+ data-testid="ucl-uikit-icon"
820
+ fill="currentColor"
821
+ height="24"
822
+ title="X social media platform"
823
+ viewBox="0 0 24 24"
824
+ width="24"
825
+ xmlns="http://www.w3.org/2000/svg"
826
+ >
827
+ <title>
828
+ X social media platform
829
+ </title>
830
+ <path
831
+ d="M13.6468 10.4686L20.9321 2H19.2057L12.8799 9.3532L7.82741 2H2L9.6403 13.1193L2 22H3.72649L10.4068 14.2348L15.7425 22H21.5699L13.6464 10.4686H13.6468ZM11.2821 13.2173L10.508 12.1101L4.34857 3.29968H7.00037L11.9711 10.4099L12.7452 11.5172L19.2066 20.7594H16.5548L11.2821 13.2177V13.2173Z"
832
+ />
833
+ </svg>
834
+ </a>
835
+ <a
836
+ aria-label="Instagram"
837
+ class="ucl-link ucl-uikit-footer__social-link css-1bd4uza"
838
+ data-testid="ucl-uikit-footer__social-link"
839
+ href="https://www.instagram.com/ucl/"
840
+ target="_blank"
841
+ >
842
+ <svg
843
+ aria-hidden="true"
844
+ class="ucl-uikit-icon css-148hpxb"
845
+ data-testid="ucl-uikit-icon"
846
+ fill="currentColor"
847
+ height="24"
848
+ title="Instagram"
849
+ viewBox="0 0 24 24"
850
+ width="24"
851
+ xmlns="http://www.w3.org/2000/svg"
852
+ >
853
+ <title>
854
+ Instagram
855
+ </title>
856
+ <path
857
+ d="M11.9987 7.97012C9.77942 7.97012 7.97004 9.77951 7.97004 11.9987C7.97004 14.218 9.77942 16.0274 11.9987 16.0274C14.2179 16.0274 16.0273 14.218 16.0273 11.9987C16.0273 9.77951 14.2179 7.97012 11.9987 7.97012Z"
858
+ />
859
+ <path
860
+ d="M22.915 7.4603C22.8351 5.7009 22.4252 4.14143 21.1356 2.85187C19.8561 1.5723 18.2966 1.17244 16.5372 1.08247C14.7178 0.972509 9.27968 0.972509 7.4603 1.08247C5.7009 1.16244 4.14143 1.5723 2.85187 2.85187C1.56231 4.13143 1.17244 5.7009 1.08247 7.4603C0.972509 9.27968 0.972509 14.7178 1.08247 16.5372C1.16244 18.2966 1.5723 19.8561 2.86187 21.1456C4.15143 22.4352 5.71089 22.8351 7.47029 22.925C9.28967 23.025 14.7278 23.025 16.5372 22.925C18.2966 22.8451 19.8561 22.4352 21.1456 21.1456C22.4352 19.8561 22.8351 18.2966 22.925 16.5372C23.025 14.7178 23.025 9.27968 22.925 7.47029L22.915 7.4603ZM11.9987 18.1966C8.56992 18.1966 5.80086 15.4276 5.80086 11.9987C5.80086 8.56992 8.56992 5.80086 11.9987 5.80086C15.4276 5.80086 18.1966 8.56992 18.1966 11.9987C18.1966 15.4276 15.4276 18.1966 11.9987 18.1966ZM18.4565 6.99046C17.6568 6.99046 17.007 6.34068 17.007 5.54095C17.007 4.74122 17.6568 4.09145 18.4565 4.09145C19.2563 4.09145 19.9061 4.74122 19.9061 5.54095C19.9061 6.34068 19.2563 6.99046 18.4565 6.99046Z"
861
+ />
862
+ </svg>
863
+ </a>
864
+ </div>
865
+ </div>
866
+ <hr
867
+ class="ucl-divider css-wwimuq"
868
+ data-testid="ucl-divider"
869
+ role="separator"
870
+ />
871
+ <div
872
+ class="css-1ah386p"
873
+ >
874
+ <span
875
+ class="css-13yf1i2"
876
+ >
877
+ University College London, Gower Street, London, WC1E 6BT
878
+ </span>
879
+ <a
880
+ class="css-dkvsjm"
881
+ href="tel:+4402076792000"
882
+ >
883
+ Tel: +44 (0) 20 7679 2000
884
+ </a>
885
+ <span
886
+ class="css-bq4k8p"
887
+ >
888
+ ©
889
+ 2025
890
+ UCL
891
+ </span>
892
+ </div>
893
+ <div
894
+ class="css-1k5afze"
895
+ >
896
+ <a
897
+ class="css-16lix8i"
898
+ href="https://www.ucl.ac.uk/legal-services/disclaimer"
899
+ >
900
+ Disclaimer
901
+ </a>
902
+ <a
903
+ class="css-16lix8i"
904
+ href="https://www.ucl.ac.uk/foi"
905
+ >
906
+ Freedom of Information
907
+ </a>
908
+ <a
909
+ class="css-16lix8i"
910
+ href="https://www.ucl.ac.uk/accessibility"
911
+ >
912
+ Accessibility
913
+ </a>
914
+ <a
915
+ class="css-16lix8i"
916
+ href="https://www.ucl.ac.uk/legal-services/privacy/cookie-policy"
917
+ >
918
+ Cookies
919
+ </a>
920
+ <a
921
+ class="css-16lix8i"
922
+ href="https://www.ucl.ac.uk/legal-services/privacy"
923
+ >
924
+ Privacy
925
+ </a>
926
+ <a
927
+ class="css-16lix8i"
928
+ href="https://www.ucl.ac.uk/commercial-procurement/modern-day-slavery-statement"
929
+ >
930
+ Slavery statement
931
+ </a>
932
+ </div>
933
+ </div>
934
+ </div>
935
+ `;