sdaia-ui 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (880) hide show
  1. package/README.md +89 -0
  2. package/dist/PlayVideoIcon-BM-4pwUd.d.cts +7 -0
  3. package/dist/PlayVideoIcon-BM-4pwUd.d.ts +7 -0
  4. package/dist/dga-icons.cjs +14 -0
  5. package/dist/dga-icons.cjs.map +1 -0
  6. package/dist/dga-icons.d.cts +1 -0
  7. package/dist/dga-icons.d.ts +1 -0
  8. package/dist/dga-icons.js +3 -0
  9. package/dist/dga-icons.js.map +1 -0
  10. package/dist/icons.cjs +4014 -0
  11. package/dist/icons.cjs.map +1 -0
  12. package/dist/icons.d.cts +756 -0
  13. package/dist/icons.d.ts +756 -0
  14. package/dist/icons.js +3871 -0
  15. package/dist/icons.js.map +1 -0
  16. package/dist/index.cjs +43620 -0
  17. package/dist/index.cjs.map +1 -0
  18. package/dist/index.d.cts +9407 -0
  19. package/dist/index.d.ts +9407 -0
  20. package/dist/index.js +43411 -0
  21. package/dist/index.js.map +1 -0
  22. package/dist/styles.css +242 -0
  23. package/package.json +65 -0
  24. package/src/components/Accordion/Accordion.tsx +207 -0
  25. package/src/components/Accordion/Accordion.types.ts +36 -0
  26. package/src/components/Accordion/Accordion.variants.ts +283 -0
  27. package/src/components/Accordion/index.ts +9 -0
  28. package/src/components/ActionBar/ActionBar.tsx +192 -0
  29. package/src/components/ActionBar/ActionBar.types.ts +67 -0
  30. package/src/components/ActionBar/ActionBar.variants.ts +95 -0
  31. package/src/components/ActionBar/index.ts +8 -0
  32. package/src/components/Activity/Activity.tsx +52 -0
  33. package/src/components/Activity/Activity.types.ts +19 -0
  34. package/src/components/Activity/Activity.variants.ts +15 -0
  35. package/src/components/Activity/index.ts +2 -0
  36. package/src/components/ActivityItem/ActivityItem.tsx +298 -0
  37. package/src/components/ActivityItem/ActivityItem.types.ts +76 -0
  38. package/src/components/ActivityItem/ActivityItem.variants.ts +117 -0
  39. package/src/components/ActivityItem/index.ts +8 -0
  40. package/src/components/Alert/Alert.tsx +183 -0
  41. package/src/components/Alert/Alert.types.ts +34 -0
  42. package/src/components/Alert/Alert.variants.ts +168 -0
  43. package/src/components/Alert/index.ts +2 -0
  44. package/src/components/AreaChart/AreaChart.tsx +454 -0
  45. package/src/components/AreaChart/AreaChart.types.ts +117 -0
  46. package/src/components/AreaChart/AreaChart.variants.ts +202 -0
  47. package/src/components/AreaChart/index.ts +2 -0
  48. package/src/components/AspectRatio/AspectRatio.tsx +36 -0
  49. package/src/components/AspectRatio/AspectRatio.types.ts +33 -0
  50. package/src/components/AspectRatio/AspectRatio.variants.ts +42 -0
  51. package/src/components/AspectRatio/index.ts +2 -0
  52. package/src/components/AudioPlayer/AudioPlayer.tsx +294 -0
  53. package/src/components/AudioPlayer/AudioPlayer.types.ts +64 -0
  54. package/src/components/AudioPlayer/AudioPlayer.variants.ts +225 -0
  55. package/src/components/AudioPlayer/index.ts +2 -0
  56. package/src/components/Autocomplete/Autocomplete.tsx +353 -0
  57. package/src/components/Autocomplete/Autocomplete.types.ts +93 -0
  58. package/src/components/Autocomplete/Autocomplete.variants.ts +149 -0
  59. package/src/components/Autocomplete/index.ts +6 -0
  60. package/src/components/Avatar/Avatar.tsx +168 -0
  61. package/src/components/Avatar/Avatar.types.ts +36 -0
  62. package/src/components/Avatar/Avatar.variants.ts +102 -0
  63. package/src/components/Avatar/index.ts +7 -0
  64. package/src/components/AvatarGroup/AvatarGroup.tsx +87 -0
  65. package/src/components/AvatarGroup/AvatarGroup.types.ts +44 -0
  66. package/src/components/AvatarGroup/AvatarGroup.variants.ts +17 -0
  67. package/src/components/AvatarGroup/index.ts +6 -0
  68. package/src/components/Badge/Badge.tsx +74 -0
  69. package/src/components/Badge/Badge.types.ts +31 -0
  70. package/src/components/Badge/Badge.variants.ts +83 -0
  71. package/src/components/Badge/index.ts +2 -0
  72. package/src/components/Bar/Bar.tsx +57 -0
  73. package/src/components/Bar/Bar.types.ts +18 -0
  74. package/src/components/Bar/Bar.variants.ts +20 -0
  75. package/src/components/Bar/index.ts +2 -0
  76. package/src/components/BarChart/BarChart.tsx +179 -0
  77. package/src/components/BarChart/BarChart.types.ts +72 -0
  78. package/src/components/BarChart/BarChart.variants.ts +134 -0
  79. package/src/components/BarChart/index.ts +2 -0
  80. package/src/components/BarGroup/BarGroup.tsx +119 -0
  81. package/src/components/BarGroup/BarGroup.types.ts +50 -0
  82. package/src/components/BarGroup/BarGroup.variants.ts +76 -0
  83. package/src/components/BarGroup/index.ts +2 -0
  84. package/src/components/Breadcrumb/Breadcrumb.tsx +137 -0
  85. package/src/components/Breadcrumb/Breadcrumb.types.ts +21 -0
  86. package/src/components/Breadcrumb/BreadcrumbItem.tsx +267 -0
  87. package/src/components/Breadcrumb/BreadcrumbItem.types.ts +66 -0
  88. package/src/components/Breadcrumb/BreadcrumbItem.variants.ts +102 -0
  89. package/src/components/Breadcrumb/index.ts +12 -0
  90. package/src/components/Button/Button.tsx +100 -0
  91. package/src/components/Button/Button.types.ts +44 -0
  92. package/src/components/Button/Button.variants.ts +183 -0
  93. package/src/components/Button/index.ts +2 -0
  94. package/src/components/ButtonClose/ButtonClose.tsx +57 -0
  95. package/src/components/ButtonClose/ButtonClose.types.ts +18 -0
  96. package/src/components/ButtonClose/ButtonClose.variants.ts +72 -0
  97. package/src/components/ButtonClose/index.ts +2 -0
  98. package/src/components/ButtonGroup/ButtonGroup.tsx +127 -0
  99. package/src/components/ButtonGroup/ButtonGroup.types.ts +51 -0
  100. package/src/components/ButtonGroup/ButtonGroup.variants.ts +65 -0
  101. package/src/components/ButtonGroup/index.ts +2 -0
  102. package/src/components/ButtonMenu/ButtonMenu.tsx +73 -0
  103. package/src/components/ButtonMenu/ButtonMenu.types.ts +43 -0
  104. package/src/components/ButtonMenu/ButtonMenu.variants.ts +18 -0
  105. package/src/components/ButtonMenu/index.ts +2 -0
  106. package/src/components/ButtonSplit/ButtonSplit.tsx +344 -0
  107. package/src/components/ButtonSplit/ButtonSplit.types.ts +95 -0
  108. package/src/components/ButtonSplit/ButtonSplit.variants.ts +165 -0
  109. package/src/components/ButtonSplit/index.ts +7 -0
  110. package/src/components/ButtonsWithSdaiaTouch/ButtonHoverPattern.tsx +69 -0
  111. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.tsx +130 -0
  112. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.types.ts +4 -0
  113. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.variants.ts +19 -0
  114. package/src/components/ButtonsWithSdaiaTouch/index.ts +6 -0
  115. package/src/components/CLAUDE.md +212 -0
  116. package/src/components/CalendarHeader/CalendarHeader.tsx +224 -0
  117. package/src/components/CalendarHeader/CalendarHeader.types.ts +51 -0
  118. package/src/components/CalendarHeader/CalendarHeader.variants.ts +65 -0
  119. package/src/components/CalendarHeader/index.ts +2 -0
  120. package/src/components/Card/Card.tsx +76 -0
  121. package/src/components/Card/Card.types.ts +11 -0
  122. package/src/components/Card/Card.variants.ts +30 -0
  123. package/src/components/Card/index.ts +2 -0
  124. package/src/components/CardContent/CardContent.tsx +178 -0
  125. package/src/components/CardContent/CardContent.types.ts +70 -0
  126. package/src/components/CardContent/CardContent.variants.ts +90 -0
  127. package/src/components/CardContent/index.ts +6 -0
  128. package/src/components/CardFooter/CardFooter.tsx +196 -0
  129. package/src/components/CardFooter/CardFooter.types.ts +59 -0
  130. package/src/components/CardFooter/CardFooter.variants.ts +127 -0
  131. package/src/components/CardFooter/index.ts +8 -0
  132. package/src/components/CardHeader/CardHeader.tsx +150 -0
  133. package/src/components/CardHeader/CardHeader.types.ts +42 -0
  134. package/src/components/CardHeader/CardHeader.variants.ts +72 -0
  135. package/src/components/CardHeader/index.ts +5 -0
  136. package/src/components/CardLeadingItem/CardLeadingItem.tsx +166 -0
  137. package/src/components/CardLeadingItem/CardLeadingItem.types.ts +75 -0
  138. package/src/components/CardLeadingItem/CardLeadingItem.variants.ts +66 -0
  139. package/src/components/CardLeadingItem/index.ts +6 -0
  140. package/src/components/CardMedia/CardMedia.tsx +324 -0
  141. package/src/components/CardMedia/CardMedia.types.ts +114 -0
  142. package/src/components/CardMedia/CardMedia.variants.ts +139 -0
  143. package/src/components/CardMedia/index.ts +2 -0
  144. package/src/components/Carousel/Carousel.tsx +182 -0
  145. package/src/components/Carousel/Carousel.types.ts +38 -0
  146. package/src/components/Carousel/Carousel.variants.ts +17 -0
  147. package/src/components/Carousel/index.ts +2 -0
  148. package/src/components/CarouselArrow/CarouselArrow.tsx +66 -0
  149. package/src/components/CarouselArrow/CarouselArrow.types.ts +26 -0
  150. package/src/components/CarouselArrow/CarouselArrow.variants.ts +83 -0
  151. package/src/components/CarouselArrow/index.ts +7 -0
  152. package/src/components/CarouselControlsGroup/CarouselControlsGroup.tsx +81 -0
  153. package/src/components/CarouselControlsGroup/CarouselControlsGroup.types.ts +24 -0
  154. package/src/components/CarouselControlsGroup/CarouselControlsGroup.variants.ts +60 -0
  155. package/src/components/CarouselControlsGroup/index.ts +6 -0
  156. package/src/components/CarouselImage/CarouselImage.tsx +253 -0
  157. package/src/components/CarouselImage/CarouselImage.types.ts +72 -0
  158. package/src/components/CarouselImage/CarouselImage.variants.ts +43 -0
  159. package/src/components/CarouselImage/index.ts +6 -0
  160. package/src/components/Chart/Chart.tsx +3 -0
  161. package/src/components/Chart/Chart.types.ts +2 -0
  162. package/src/components/Chart/Chart.variants.ts +2 -0
  163. package/src/components/Chart/index.ts +2 -0
  164. package/src/components/ChartBadge/ChartBadge.tsx +62 -0
  165. package/src/components/ChartBadge/ChartBadge.types.ts +27 -0
  166. package/src/components/ChartBadge/ChartBadge.variants.ts +62 -0
  167. package/src/components/ChartBadge/index.ts +2 -0
  168. package/src/components/Checkbox/Checkbox.tsx +243 -0
  169. package/src/components/Checkbox/Checkbox.types.ts +20 -0
  170. package/src/components/Checkbox/index.ts +2 -0
  171. package/src/components/CheckboxLabel/CheckboxLabel.tsx +148 -0
  172. package/src/components/CheckboxLabel/CheckboxLabel.types.ts +55 -0
  173. package/src/components/CheckboxLabel/CheckboxLabel.variants.ts +35 -0
  174. package/src/components/CheckboxLabel/index.ts +2 -0
  175. package/src/components/Chip/Chip.tsx +245 -0
  176. package/src/components/Chip/Chip.types.ts +83 -0
  177. package/src/components/Chip/Chip.variants.ts +143 -0
  178. package/src/components/Chip/index.ts +2 -0
  179. package/src/components/CircularItem/CircularItem.tsx +133 -0
  180. package/src/components/CircularItem/CircularItem.types.ts +45 -0
  181. package/src/components/CircularItem/CircularItem.variants.ts +128 -0
  182. package/src/components/CircularItem/index.ts +7 -0
  183. package/src/components/CodeSnippet/CodeSnippet.tsx +421 -0
  184. package/src/components/CodeSnippet/CodeSnippet.types.ts +99 -0
  185. package/src/components/CodeSnippet/CodeSnippet.variants.ts +76 -0
  186. package/src/components/CodeSnippet/index.ts +9 -0
  187. package/src/components/ColumnChart/ColumnChart.tsx +943 -0
  188. package/src/components/ColumnChart/ColumnChart.types.ts +98 -0
  189. package/src/components/ColumnChart/ColumnChart.variants.ts +117 -0
  190. package/src/components/ColumnChart/index.ts +9 -0
  191. package/src/components/ComplexComposition/ComplexComposition.tsx +82 -0
  192. package/src/components/ComplexComposition/ComplexComposition.types.ts +3 -0
  193. package/src/components/ComplexComposition/ComplexComposition.variants.ts +14 -0
  194. package/src/components/ComplexComposition/index.ts +2 -0
  195. package/src/components/ContentSwitcher/ContentSwitcher.tsx +104 -0
  196. package/src/components/ContentSwitcher/ContentSwitcher.types.ts +28 -0
  197. package/src/components/ContentSwitcher/ContentSwitcher.variants.ts +70 -0
  198. package/src/components/ContentSwitcher/index.ts +6 -0
  199. package/src/components/ContentSwitcherItem/ContentSwitcherItem.tsx +56 -0
  200. package/src/components/ContentSwitcherItem/ContentSwitcherItem.types.ts +14 -0
  201. package/src/components/ContentSwitcherItem/ContentSwitcherItem.variants.ts +65 -0
  202. package/src/components/ContentSwitcherItem/index.ts +6 -0
  203. package/src/components/ContextMenu/ContextMenu.tsx +101 -0
  204. package/src/components/ContextMenu/ContextMenu.types.ts +64 -0
  205. package/src/components/ContextMenu/ContextMenu.variants.ts +36 -0
  206. package/src/components/ContextMenu/index.ts +7 -0
  207. package/src/components/ContextMenuDropdown/ContextMenuDropdown.tsx +370 -0
  208. package/src/components/ContextMenuDropdown/ContextMenuDropdown.types.ts +89 -0
  209. package/src/components/ContextMenuDropdown/ContextMenuDropdown.variants.ts +88 -0
  210. package/src/components/ContextMenuDropdown/index.ts +5 -0
  211. package/src/components/DateCell/DateCell.tsx +181 -0
  212. package/src/components/DateCell/DateCell.types.ts +53 -0
  213. package/src/components/DateCell/DateCell.variants.ts +217 -0
  214. package/src/components/DateCell/index.ts +2 -0
  215. package/src/components/DatePicker/DatePicker.tsx +923 -0
  216. package/src/components/DatePicker/DatePicker.types.ts +102 -0
  217. package/src/components/DatePicker/DatePicker.variants.ts +274 -0
  218. package/src/components/DatePicker/index.ts +9 -0
  219. package/src/components/DateTab/DateTab.tsx +91 -0
  220. package/src/components/DateTab/DateTab.types.ts +9 -0
  221. package/src/components/DateTab/DateTab.variants.ts +98 -0
  222. package/src/components/DateTab/index.ts +2 -0
  223. package/src/components/DgaIcon/DgaIcon.tsx +68 -0
  224. package/src/components/DgaIcon/DgaIcon.types.ts +57 -0
  225. package/src/components/DgaIcon/DgaIcon.variants.ts +41 -0
  226. package/src/components/DgaIcon/DgaIconByName.tsx +76 -0
  227. package/src/components/DgaIcon/generated/icon-names.ts +4388 -0
  228. package/src/components/DgaIcon/index.ts +12 -0
  229. package/src/components/DgaIcon/lib/decodeDataUrl.ts +46 -0
  230. package/src/components/DigitalStamp/DigitalStamp.tsx +236 -0
  231. package/src/components/DigitalStamp/DigitalStamp.types.ts +38 -0
  232. package/src/components/DigitalStamp/DigitalStamp.variants.ts +185 -0
  233. package/src/components/DigitalStamp/index.ts +2 -0
  234. package/src/components/Divider/Divider.tsx +83 -0
  235. package/src/components/Divider/Divider.types.ts +49 -0
  236. package/src/components/Divider/Divider.variants.ts +55 -0
  237. package/src/components/Divider/index.ts +8 -0
  238. package/src/components/DonutChart/DonutChart.tsx +251 -0
  239. package/src/components/DonutChart/DonutChart.types.ts +97 -0
  240. package/src/components/DonutChart/DonutChart.variants.ts +203 -0
  241. package/src/components/DonutChart/index.ts +7 -0
  242. package/src/components/DonutChartPanel/DonutChartPanel.tsx +778 -0
  243. package/src/components/DonutChartPanel/DonutChartPanel.types.ts +143 -0
  244. package/src/components/DonutChartPanel/DonutChartPanel.variants.ts +154 -0
  245. package/src/components/DonutChartPanel/index.ts +9 -0
  246. package/src/components/DraggableItem/DraggableItem.tsx +228 -0
  247. package/src/components/DraggableItem/DraggableItem.types.ts +72 -0
  248. package/src/components/DraggableItem/DraggableItem.variants.ts +149 -0
  249. package/src/components/DraggableItem/index.ts +3 -0
  250. package/src/components/DraggableList/DraggableList.tsx +20 -0
  251. package/src/components/DraggableList/DraggableList.types.ts +16 -0
  252. package/src/components/DraggableList/DraggableList.variants.ts +13 -0
  253. package/src/components/DraggableList/index.ts +3 -0
  254. package/src/components/Dropdown/Dropdown.tsx +331 -0
  255. package/src/components/Dropdown/Dropdown.types.ts +108 -0
  256. package/src/components/Dropdown/Dropdown.variants.ts +73 -0
  257. package/src/components/Dropdown/index.ts +9 -0
  258. package/src/components/DropdownListHeader/DropdownListHeader.tsx +79 -0
  259. package/src/components/DropdownListHeader/DropdownListHeader.types.ts +24 -0
  260. package/src/components/DropdownListHeader/DropdownListHeader.variants.ts +65 -0
  261. package/src/components/DropdownListHeader/index.ts +2 -0
  262. package/src/components/EmptyState/EmptyState.tsx +221 -0
  263. package/src/components/EmptyState/EmptyState.types.ts +48 -0
  264. package/src/components/EmptyState/EmptyState.variants.ts +122 -0
  265. package/src/components/EmptyState/index.ts +3 -0
  266. package/src/components/Extension/Extension.tsx +240 -0
  267. package/src/components/Extension/Extension.types.ts +40 -0
  268. package/src/components/Extension/Extension.variants.ts +27 -0
  269. package/src/components/Extension/index.ts +6 -0
  270. package/src/components/Feedback/Feedback.tsx +55 -0
  271. package/src/components/Feedback/Feedback.types.ts +15 -0
  272. package/src/components/Feedback/Feedback.variants.ts +9 -0
  273. package/src/components/Feedback/index.ts +2 -0
  274. package/src/components/FeedbackOverview/FeedbackOverview.tsx +70 -0
  275. package/src/components/FeedbackOverview/FeedbackOverview.types.ts +11 -0
  276. package/src/components/FeedbackOverview/FeedbackOverview.variants.ts +17 -0
  277. package/src/components/FeedbackOverview/index.ts +2 -0
  278. package/src/components/FeedbackReaction/FeedbackReaction.tsx +81 -0
  279. package/src/components/FeedbackReaction/FeedbackReaction.types.ts +14 -0
  280. package/src/components/FeedbackReaction/FeedbackReaction.variants.ts +39 -0
  281. package/src/components/FeedbackReaction/index.ts +2 -0
  282. package/src/components/FileUploadBase/FileUploadBase.tsx +104 -0
  283. package/src/components/FileUploadBase/FileUploadBase.types.ts +48 -0
  284. package/src/components/FileUploadBase/FileUploadBase.variants.ts +51 -0
  285. package/src/components/FileUploadBase/index.ts +2 -0
  286. package/src/components/FileUploadItemBase/FileUploadItemBase.tsx +197 -0
  287. package/src/components/FileUploadItemBase/FileUploadItemBase.types.ts +58 -0
  288. package/src/components/FileUploadItemBase/FileUploadItemBase.variants.ts +67 -0
  289. package/src/components/FileUploadItemBase/index.ts +6 -0
  290. package/src/components/FileUploader/FileUploader.tsx +164 -0
  291. package/src/components/FileUploader/FileUploader.types.ts +46 -0
  292. package/src/components/FileUploader/FileUploader.variants.ts +9 -0
  293. package/src/components/FileUploader/index.ts +2 -0
  294. package/src/components/Filtration/Filtration.tsx +260 -0
  295. package/src/components/Filtration/Filtration.types.ts +95 -0
  296. package/src/components/Filtration/Filtration.variants.ts +70 -0
  297. package/src/components/Filtration/index.ts +6 -0
  298. package/src/components/FiltrationItem/FiltrationItem.tsx +200 -0
  299. package/src/components/FiltrationItem/FiltrationItem.types.ts +57 -0
  300. package/src/components/FiltrationItem/FiltrationItem.variants.ts +81 -0
  301. package/src/components/FiltrationItem/index.ts +2 -0
  302. package/src/components/FiltrationList/FiltrationList.tsx +611 -0
  303. package/src/components/FiltrationList/FiltrationList.types.ts +191 -0
  304. package/src/components/FiltrationList/FiltrationList.variants.ts +283 -0
  305. package/src/components/FiltrationList/index.ts +16 -0
  306. package/src/components/FloatingButton/FloatingButton.tsx +89 -0
  307. package/src/components/FloatingButton/FloatingButton.types.ts +29 -0
  308. package/src/components/FloatingButton/FloatingButton.variants.ts +79 -0
  309. package/src/components/FloatingButton/index.ts +6 -0
  310. package/src/components/Footer/Footer.tsx +353 -0
  311. package/src/components/Footer/Footer.types.ts +142 -0
  312. package/src/components/Footer/Footer.variants.ts +137 -0
  313. package/src/components/Footer/index.ts +11 -0
  314. package/src/components/FooterItem/FooterItem.tsx +211 -0
  315. package/src/components/FooterItem/FooterItem.types.ts +45 -0
  316. package/src/components/FooterItem/FooterItem.variants.ts +139 -0
  317. package/src/components/FooterItem/index.ts +2 -0
  318. package/src/components/FooterLinkList/FooterLinkList.tsx +140 -0
  319. package/src/components/FooterLinkList/FooterLinkList.types.ts +46 -0
  320. package/src/components/FooterLinkList/FooterLinkList.variants.ts +64 -0
  321. package/src/components/FooterLinkList/index.ts +2 -0
  322. package/src/components/GraphBase/GraphBase.tsx +598 -0
  323. package/src/components/GraphBase/GraphBase.types.ts +101 -0
  324. package/src/components/GraphBase/GraphBase.variants.ts +126 -0
  325. package/src/components/GraphBase/index.ts +7 -0
  326. package/src/components/HeaderItem/HeaderItem.tsx +206 -0
  327. package/src/components/HeaderItem/HeaderItem.types.ts +73 -0
  328. package/src/components/HeaderItem/HeaderItem.variants.ts +139 -0
  329. package/src/components/HeaderItem/index.ts +2 -0
  330. package/src/components/HelpIcon/HelpIcon.tsx +173 -0
  331. package/src/components/HelpIcon/HelpIcon.types.ts +54 -0
  332. package/src/components/HelpIcon/HelpIcon.variants.ts +79 -0
  333. package/src/components/HelpIcon/index.ts +2 -0
  334. package/src/components/HorizontalTabs/HorizontalTabs.tsx +87 -0
  335. package/src/components/HorizontalTabs/HorizontalTabs.types.ts +41 -0
  336. package/src/components/HorizontalTabs/HorizontalTabs.variants.ts +54 -0
  337. package/src/components/HorizontalTabs/index.ts +6 -0
  338. package/src/components/IllustrationInstance/IllustrationInstance.tsx +46 -0
  339. package/src/components/IllustrationInstance/IllustrationInstance.types.ts +25 -0
  340. package/src/components/IllustrationInstance/IllustrationInstance.variants.ts +19 -0
  341. package/src/components/IllustrationInstance/index.ts +3 -0
  342. package/src/components/ImagePreview/ImagePreview.tsx +170 -0
  343. package/src/components/ImagePreview/ImagePreview.types.ts +54 -0
  344. package/src/components/ImagePreview/ImagePreview.variants.ts +39 -0
  345. package/src/components/ImagePreview/index.ts +2 -0
  346. package/src/components/Input/Input.tsx +113 -0
  347. package/src/components/Input/Input.types.ts +22 -0
  348. package/src/components/Input/index.ts +2 -0
  349. package/src/components/InputPrefixSuffix/InputPrefixSuffix.tsx +91 -0
  350. package/src/components/InputPrefixSuffix/InputPrefixSuffix.types.ts +81 -0
  351. package/src/components/InputPrefixSuffix/InputPrefixSuffix.variants.ts +128 -0
  352. package/src/components/InputPrefixSuffix/index.ts +8 -0
  353. package/src/components/InputsActions/InputsActions.tsx +53 -0
  354. package/src/components/InputsActions/InputsActions.types.ts +13 -0
  355. package/src/components/InputsActions/InputsActions.variants.ts +18 -0
  356. package/src/components/InputsActions/index.ts +2 -0
  357. package/src/components/InstanceColumn/InstanceColumn.tsx +43 -0
  358. package/src/components/InstanceColumn/InstanceColumn.types.ts +18 -0
  359. package/src/components/InstanceColumn/InstanceColumn.variants.ts +11 -0
  360. package/src/components/InstanceColumn/index.ts +2 -0
  361. package/src/components/InstanceItem/InstanceItem.tsx +33 -0
  362. package/src/components/InstanceItem/InstanceItem.types.ts +11 -0
  363. package/src/components/InstanceItem/InstanceItem.variants.ts +31 -0
  364. package/src/components/InstanceItem/index.ts +2 -0
  365. package/src/components/InstanceRows/InstanceRows.tsx +41 -0
  366. package/src/components/InstanceRows/InstanceRows.types.ts +17 -0
  367. package/src/components/InstanceRows/InstanceRows.variants.ts +10 -0
  368. package/src/components/InstanceRows/index.ts +2 -0
  369. package/src/components/InstanceSlot/InstanceSlot.tsx +25 -0
  370. package/src/components/InstanceSlot/InstanceSlot.types.ts +10 -0
  371. package/src/components/InstanceSlot/InstanceSlot.variants.ts +2 -0
  372. package/src/components/InstanceSlot/index.ts +2 -0
  373. package/src/components/LineChart/LineChart.tsx +592 -0
  374. package/src/components/LineChart/LineChart.types.ts +78 -0
  375. package/src/components/LineChart/LineChart.variants.ts +324 -0
  376. package/src/components/LineChart/index.ts +7 -0
  377. package/src/components/Link/Link.tsx +81 -0
  378. package/src/components/Link/Link.types.ts +23 -0
  379. package/src/components/Link/Link.variants.ts +69 -0
  380. package/src/components/Link/index.ts +2 -0
  381. package/src/components/List/List.tsx +260 -0
  382. package/src/components/List/List.types.ts +70 -0
  383. package/src/components/List/List.variants.ts +94 -0
  384. package/src/components/List/index.ts +5 -0
  385. package/src/components/ListGroup/ListGroup.tsx +37 -0
  386. package/src/components/ListGroup/ListGroup.types.ts +14 -0
  387. package/src/components/ListGroup/ListGroup.variants.ts +17 -0
  388. package/src/components/ListGroup/index.ts +3 -0
  389. package/src/components/LoadingIndicator/LoadingIndicator.tsx +208 -0
  390. package/src/components/LoadingIndicator/LoadingIndicator.types.ts +51 -0
  391. package/src/components/LoadingIndicator/LoadingIndicator.variants.ts +108 -0
  392. package/src/components/LoadingIndicator/index.ts +7 -0
  393. package/src/components/MediaGallery/MediaGallery.tsx +600 -0
  394. package/src/components/MediaGallery/MediaGallery.types.ts +124 -0
  395. package/src/components/MediaGallery/MediaGallery.variants.ts +116 -0
  396. package/src/components/MediaGallery/index.ts +2 -0
  397. package/src/components/MediaGrids/MediaGrids.tsx +48 -0
  398. package/src/components/MediaGrids/MediaGrids.types.ts +14 -0
  399. package/src/components/MediaGrids/MediaGrids.variants.ts +16 -0
  400. package/src/components/MediaGrids/index.ts +2 -0
  401. package/src/components/MediaViewer/MediaViewer.tsx +345 -0
  402. package/src/components/MediaViewer/MediaViewer.types.ts +59 -0
  403. package/src/components/MediaViewer/MediaViewer.variants.ts +168 -0
  404. package/src/components/MediaViewer/index.ts +2 -0
  405. package/src/components/Menu/Menu.tsx +109 -0
  406. package/src/components/Menu/Menu.types.ts +37 -0
  407. package/src/components/Menu/Menu.variants.ts +29 -0
  408. package/src/components/Menu/index.ts +2 -0
  409. package/src/components/MenuButtonItem/MenuButtonItem.tsx +280 -0
  410. package/src/components/MenuButtonItem/MenuButtonItem.types.ts +91 -0
  411. package/src/components/MenuButtonItem/MenuButtonItem.variants.ts +223 -0
  412. package/src/components/MenuButtonItem/index.ts +8 -0
  413. package/src/components/MenuItem/MenuItem.tsx +211 -0
  414. package/src/components/MenuItem/MenuItem.types.ts +40 -0
  415. package/src/components/MenuItem/MenuItem.variants.ts +48 -0
  416. package/src/components/MenuItem/index.ts +2 -0
  417. package/src/components/MenuItemGroup/MenuItemGroup.tsx +91 -0
  418. package/src/components/MenuItemGroup/MenuItemGroup.types.ts +82 -0
  419. package/src/components/MenuItemGroup/MenuItemGroup.variants.ts +33 -0
  420. package/src/components/MenuItemGroup/index.ts +2 -0
  421. package/src/components/MenuList/MenuList.tsx +44 -0
  422. package/src/components/MenuList/MenuList.types.ts +28 -0
  423. package/src/components/MenuList/MenuList.variants.ts +2 -0
  424. package/src/components/MenuList/index.ts +2 -0
  425. package/src/components/Metric/Metric.tsx +584 -0
  426. package/src/components/Metric/Metric.types.ts +77 -0
  427. package/src/components/Metric/Metric.variants.ts +175 -0
  428. package/src/components/Metric/index.ts +8 -0
  429. package/src/components/Modal/Modal.tsx +139 -0
  430. package/src/components/Modal/Modal.types.ts +55 -0
  431. package/src/components/Modal/index.ts +2 -0
  432. package/src/components/ModalActions/ModalActions.tsx +176 -0
  433. package/src/components/ModalActions/ModalActions.types.ts +31 -0
  434. package/src/components/ModalActions/index.ts +2 -0
  435. package/src/components/ModalHeader/ModalHeader.tsx +207 -0
  436. package/src/components/ModalHeader/ModalHeader.types.ts +24 -0
  437. package/src/components/ModalHeader/index.ts +2 -0
  438. package/src/components/NavBar/NavBar.tsx +326 -0
  439. package/src/components/NavBar/NavBar.types.ts +78 -0
  440. package/src/components/NavBar/NavBar.variants.ts +139 -0
  441. package/src/components/NavBar/index.ts +2 -0
  442. package/src/components/NavHeader/NavHeader.tsx +292 -0
  443. package/src/components/NavHeader/NavHeader.types.ts +145 -0
  444. package/src/components/NavHeader/NavHeader.variants.ts +178 -0
  445. package/src/components/NavHeader/index.ts +2 -0
  446. package/src/components/NavHeaderActions/NavHeaderActions.tsx +161 -0
  447. package/src/components/NavHeaderActions/NavHeaderActions.types.ts +61 -0
  448. package/src/components/NavHeaderActions/NavHeaderActions.variants.ts +58 -0
  449. package/src/components/NavHeaderActions/index.ts +2 -0
  450. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.tsx +243 -0
  451. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.types.ts +76 -0
  452. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.variants.ts +133 -0
  453. package/src/components/NavHeaderDropdownItem/index.ts +5 -0
  454. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.tsx +64 -0
  455. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.types.ts +55 -0
  456. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.variants.ts +47 -0
  457. package/src/components/NavHeaderDropdownItemList/index.ts +5 -0
  458. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.tsx +52 -0
  459. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.types.ts +17 -0
  460. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.variants.ts +73 -0
  461. package/src/components/NavHeaderMenuButton/index.ts +2 -0
  462. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.tsx +126 -0
  463. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.types.ts +74 -0
  464. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.variants.ts +169 -0
  465. package/src/components/NavHeaderMenuCard/index.ts +6 -0
  466. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.tsx +164 -0
  467. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.types.ts +64 -0
  468. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.variants.ts +175 -0
  469. package/src/components/NavHeaderMenuItem/index.ts +2 -0
  470. package/src/components/NavItem/NavItem.tsx +210 -0
  471. package/src/components/NavItem/NavItem.types.ts +71 -0
  472. package/src/components/NavItem/NavItem.variants.ts +61 -0
  473. package/src/components/NavItem/index.ts +2 -0
  474. package/src/components/NavLabel/NavLabel.tsx +84 -0
  475. package/src/components/NavLabel/NavLabel.types.ts +55 -0
  476. package/src/components/NavLabel/NavLabel.variants.ts +68 -0
  477. package/src/components/NavLabel/index.ts +2 -0
  478. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.tsx +101 -0
  479. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.types.ts +27 -0
  480. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.variants.ts +42 -0
  481. package/src/components/NavLogoPlaceholder/index.ts +6 -0
  482. package/src/components/NotificationBanner/NotificationBanner.tsx +256 -0
  483. package/src/components/NotificationBanner/NotificationBanner.types.ts +77 -0
  484. package/src/components/NotificationBanner/NotificationBanner.variants.ts +109 -0
  485. package/src/components/NotificationBanner/index.ts +7 -0
  486. package/src/components/NotificationPopup/NotificationPopup.tsx +147 -0
  487. package/src/components/NotificationPopup/NotificationPopup.types.ts +51 -0
  488. package/src/components/NotificationPopup/NotificationPopup.variants.ts +145 -0
  489. package/src/components/NotificationPopup/index.ts +5 -0
  490. package/src/components/Notifications/Notifications.tsx +209 -0
  491. package/src/components/Notifications/Notifications.types.ts +68 -0
  492. package/src/components/Notifications/Notifications.variants.ts +89 -0
  493. package/src/components/Notifications/index.ts +2 -0
  494. package/src/components/Number/Number.tsx +497 -0
  495. package/src/components/Number/Number.types.ts +58 -0
  496. package/src/components/Number/Number.variants.ts +94 -0
  497. package/src/components/Number/index.ts +2 -0
  498. package/src/components/NumberInput/NumberInput.tsx +265 -0
  499. package/src/components/NumberInput/NumberInput.types.ts +110 -0
  500. package/src/components/NumberInput/NumberInput.variants.ts +205 -0
  501. package/src/components/NumberInput/index.ts +6 -0
  502. package/src/components/Pagination/Pagination.tsx +393 -0
  503. package/src/components/Pagination/Pagination.types.ts +26 -0
  504. package/src/components/Pagination/Pagination.variants.ts +88 -0
  505. package/src/components/Pagination/index.ts +3 -0
  506. package/src/components/PaginationButtonGroup/PaginationButtonGroup.tsx +132 -0
  507. package/src/components/PaginationButtonGroup/PaginationButtonGroup.types.ts +20 -0
  508. package/src/components/PaginationButtonGroup/PaginationButtonGroup.variants.ts +45 -0
  509. package/src/components/PaginationButtonGroup/index.ts +8 -0
  510. package/src/components/PaginationCells/PaginationCells.tsx +105 -0
  511. package/src/components/PaginationCells/PaginationCells.types.ts +31 -0
  512. package/src/components/PaginationCells/PaginationCells.variants.ts +96 -0
  513. package/src/components/PaginationCells/index.ts +9 -0
  514. package/src/components/PdfViewer/PdfViewer.tsx +265 -0
  515. package/src/components/PdfViewer/PdfViewer.types.ts +79 -0
  516. package/src/components/PdfViewer/PdfViewer.variants.ts +105 -0
  517. package/src/components/PdfViewer/index.ts +3 -0
  518. package/src/components/PieChartPanel/PieChartPanel.tsx +889 -0
  519. package/src/components/PieChartPanel/PieChartPanel.types.ts +130 -0
  520. package/src/components/PieChartPanel/PieChartPanel.variants.ts +156 -0
  521. package/src/components/PieChartPanel/index.ts +8 -0
  522. package/src/components/Popover/Popover.tsx +398 -0
  523. package/src/components/Popover/Popover.types.ts +155 -0
  524. package/src/components/Popover/Popover.variants.ts +147 -0
  525. package/src/components/Popover/index.ts +7 -0
  526. package/src/components/ProgressBar/ProgressBar.tsx +241 -0
  527. package/src/components/ProgressBar/ProgressBar.types.ts +22 -0
  528. package/src/components/ProgressBar/ProgressBar.variants.ts +54 -0
  529. package/src/components/ProgressBar/index.ts +2 -0
  530. package/src/components/ProgressCircle/ProgressCircle.tsx +369 -0
  531. package/src/components/ProgressCircle/ProgressCircle.types.ts +26 -0
  532. package/src/components/ProgressCircle/ProgressCircle.variants.ts +88 -0
  533. package/src/components/ProgressCircle/index.ts +7 -0
  534. package/src/components/Quote/Quote.tsx +210 -0
  535. package/src/components/Quote/Quote.types.ts +73 -0
  536. package/src/components/Quote/Quote.variants.ts +106 -0
  537. package/src/components/Quote/index.ts +2 -0
  538. package/src/components/RadialStepper/RadialStepper.tsx +166 -0
  539. package/src/components/RadialStepper/RadialStepper.types.ts +77 -0
  540. package/src/components/RadialStepper/RadialStepper.variants.ts +122 -0
  541. package/src/components/RadialStepper/index.ts +7 -0
  542. package/src/components/RadioButton/RadioButton.tsx +237 -0
  543. package/src/components/RadioButton/RadioButton.types.ts +18 -0
  544. package/src/components/RadioButton/index.ts +2 -0
  545. package/src/components/RadioLabel/RadioLabel.tsx +157 -0
  546. package/src/components/RadioLabel/RadioLabel.types.ts +53 -0
  547. package/src/components/RadioLabel/RadioLabel.variants.ts +36 -0
  548. package/src/components/RadioLabel/index.ts +2 -0
  549. package/src/components/RangeSlider/RangeSlider.tsx +389 -0
  550. package/src/components/RangeSlider/RangeSlider.types.ts +38 -0
  551. package/src/components/RangeSlider/RangeSlider.variants.ts +27 -0
  552. package/src/components/RangeSlider/index.ts +2 -0
  553. package/src/components/Rating/Rating.tsx +246 -0
  554. package/src/components/Rating/Rating.types.ts +37 -0
  555. package/src/components/Rating/Rating.variants.ts +52 -0
  556. package/src/components/Rating/index.ts +8 -0
  557. package/src/components/RatingOverview/RatingOverview.tsx +170 -0
  558. package/src/components/RatingOverview/RatingOverview.types.ts +37 -0
  559. package/src/components/RatingOverview/RatingOverview.variants.ts +50 -0
  560. package/src/components/RatingOverview/index.ts +2 -0
  561. package/src/components/RatingStar/RatingStar.tsx +76 -0
  562. package/src/components/RatingStar/RatingStar.types.ts +18 -0
  563. package/src/components/RatingStar/RatingStar.variants.ts +34 -0
  564. package/src/components/RatingStar/index.ts +7 -0
  565. package/src/components/RichTextEditor/RichTextEditor.tsx +1341 -0
  566. package/src/components/RichTextEditor/RichTextEditor.types.ts +127 -0
  567. package/src/components/RichTextEditor/RichTextEditor.variants.ts +231 -0
  568. package/src/components/RichTextEditor/index.ts +6 -0
  569. package/src/components/ScatterChart/ScatterChart.tsx +164 -0
  570. package/src/components/ScatterChart/ScatterChart.types.ts +42 -0
  571. package/src/components/ScatterChart/ScatterChart.variants.ts +162 -0
  572. package/src/components/ScatterChart/index.ts +2 -0
  573. package/src/components/SdaiaLogoAnimation/BGSVG.tsx +216 -0
  574. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.tsx +120 -0
  575. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.types.ts +13 -0
  576. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.variants.ts +22 -0
  577. package/src/components/SdaiaLogoAnimation/index.ts +2 -0
  578. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.tsx +55 -0
  579. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.types.ts +12 -0
  580. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.variants.ts +28 -0
  581. package/src/components/SdaiaTouch2dAnimation/Star.tsx +82 -0
  582. package/src/components/SdaiaTouch2dAnimation/StarShape.tsx +78 -0
  583. package/src/components/SdaiaTouch2dAnimation/index.ts +6 -0
  584. package/src/components/SecondNavHeader/SecondNavHeader.tsx +80 -0
  585. package/src/components/SecondNavHeader/SecondNavHeader.types.ts +41 -0
  586. package/src/components/SecondNavHeader/SecondNavHeader.variants.ts +42 -0
  587. package/src/components/SecondNavHeader/index.ts +2 -0
  588. package/src/components/Select/Select.tsx +351 -0
  589. package/src/components/Select/Select.types.ts +102 -0
  590. package/src/components/Select/Select.variants.ts +111 -0
  591. package/src/components/Select/index.ts +2 -0
  592. package/src/components/SelectMenuItem/SelectMenuItem.tsx +132 -0
  593. package/src/components/SelectMenuItem/SelectMenuItem.types.ts +47 -0
  594. package/src/components/SelectMenuItem/SelectMenuItem.variants.ts +56 -0
  595. package/src/components/SelectMenuItem/index.ts +2 -0
  596. package/src/components/SeriesLabel/SeriesLabel.tsx +76 -0
  597. package/src/components/SeriesLabel/SeriesLabel.types.ts +27 -0
  598. package/src/components/SeriesLabel/SeriesLabel.variants.ts +84 -0
  599. package/src/components/SeriesLabel/index.ts +2 -0
  600. package/src/components/Signature/Signature.tsx +905 -0
  601. package/src/components/Signature/Signature.types.ts +68 -0
  602. package/src/components/Signature/Signature.variants.ts +115 -0
  603. package/src/components/Signature/index.ts +2 -0
  604. package/src/components/Skeleton/Skeleton.tsx +21 -0
  605. package/src/components/Skeleton/Skeleton.types.ts +15 -0
  606. package/src/components/Skeleton/Skeleton.variants.ts +14 -0
  607. package/src/components/Skeleton/index.ts +2 -0
  608. package/src/components/SkeletonAvatar/SkeletonAvatar.tsx +21 -0
  609. package/src/components/SkeletonAvatar/SkeletonAvatar.types.ts +15 -0
  610. package/src/components/SkeletonAvatar/SkeletonAvatar.variants.ts +14 -0
  611. package/src/components/SkeletonAvatar/index.ts +2 -0
  612. package/src/components/SlideoutMenu/SlideoutMenu.tsx +225 -0
  613. package/src/components/SlideoutMenu/SlideoutMenu.types.ts +39 -0
  614. package/src/components/SlideoutMenu/SlideoutMenuDivider.tsx +10 -0
  615. package/src/components/SlideoutMenu/SlideoutMenuSection.tsx +39 -0
  616. package/src/components/SlideoutMenu/index.ts +5 -0
  617. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.tsx +96 -0
  618. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.types.ts +28 -0
  619. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.variants.ts +49 -0
  620. package/src/components/SlideoutMenuFooter/index.ts +6 -0
  621. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.tsx +83 -0
  622. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.types.ts +19 -0
  623. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.variants.ts +78 -0
  624. package/src/components/SlideoutMenuHeader/index.ts +2 -0
  625. package/src/components/Slider/Slider.tsx +259 -0
  626. package/src/components/Slider/Slider.types.ts +22 -0
  627. package/src/components/Slider/Slider.variants.ts +23 -0
  628. package/src/components/Slider/index.ts +2 -0
  629. package/src/components/Sparkline/Sparkline.tsx +130 -0
  630. package/src/components/Sparkline/Sparkline.types.ts +36 -0
  631. package/src/components/Sparkline/Sparkline.variants.ts +118 -0
  632. package/src/components/Sparkline/index.ts +2 -0
  633. package/src/components/StatusDot/StatusDot.tsx +82 -0
  634. package/src/components/StatusDot/StatusDot.types.ts +35 -0
  635. package/src/components/StatusDot/StatusDot.variants.ts +66 -0
  636. package/src/components/StatusDot/index.ts +8 -0
  637. package/src/components/StructuredList/StructuredList.tsx +79 -0
  638. package/src/components/StructuredList/StructuredList.types.ts +27 -0
  639. package/src/components/StructuredList/index.ts +2 -0
  640. package/src/components/StructuredListGroup/StructuredListGroup.tsx +76 -0
  641. package/src/components/StructuredListGroup/StructuredListGroup.types.ts +27 -0
  642. package/src/components/StructuredListGroup/StructuredListGroup.variants.ts +14 -0
  643. package/src/components/StructuredListGroup/index.ts +5 -0
  644. package/src/components/StructuredListHeader/StructuredListHeader.tsx +98 -0
  645. package/src/components/StructuredListHeader/StructuredListHeader.types.ts +26 -0
  646. package/src/components/StructuredListHeader/StructuredListHeader.variants.ts +24 -0
  647. package/src/components/StructuredListHeader/index.ts +5 -0
  648. package/src/components/StructuredListRow/StructuredListRow.tsx +144 -0
  649. package/src/components/StructuredListRow/StructuredListRow.types.ts +37 -0
  650. package/src/components/StructuredListRow/StructuredListRow.variants.ts +53 -0
  651. package/src/components/StructuredListRow/index.ts +6 -0
  652. package/src/components/SubHeaderItem/SubHeaderItem.tsx +37 -0
  653. package/src/components/SubHeaderItem/SubHeaderItem.types.ts +20 -0
  654. package/src/components/SubHeaderItem/SubHeaderItem.variants.ts +23 -0
  655. package/src/components/SubHeaderItem/index.ts +2 -0
  656. package/src/components/Switch/Switch.tsx +138 -0
  657. package/src/components/Switch/Switch.types.ts +18 -0
  658. package/src/components/Switch/Switch.variants.ts +49 -0
  659. package/src/components/Switch/index.ts +2 -0
  660. package/src/components/SwitchLabel/SwitchLabel.tsx +114 -0
  661. package/src/components/SwitchLabel/SwitchLabel.types.ts +27 -0
  662. package/src/components/SwitchLabel/SwitchLabel.variants.ts +28 -0
  663. package/src/components/SwitchLabel/index.ts +2 -0
  664. package/src/components/Tab/Tab.tsx +92 -0
  665. package/src/components/Tab/Tab.types.ts +34 -0
  666. package/src/components/Tab/Tab.variants.ts +79 -0
  667. package/src/components/Tab/index.ts +2 -0
  668. package/src/components/Table/Table.tsx +353 -0
  669. package/src/components/Table/Table.types.ts +80 -0
  670. package/src/components/Table/Table.variants.ts +110 -0
  671. package/src/components/Table/index.ts +10 -0
  672. package/src/components/TableOfContent/TableOfContent.tsx +33 -0
  673. package/src/components/TableOfContent/TableOfContent.types.ts +15 -0
  674. package/src/components/TableOfContent/TableOfContent.variants.ts +27 -0
  675. package/src/components/TableOfContent/index.ts +2 -0
  676. package/src/components/TableOfContentItem/TableOfContentItem.tsx +85 -0
  677. package/src/components/TableOfContentItem/TableOfContentItem.types.ts +23 -0
  678. package/src/components/TableOfContentItem/TableOfContentItem.variants.ts +109 -0
  679. package/src/components/TableOfContentItem/index.ts +2 -0
  680. package/src/components/TableOfContentList/TableOfContentList.tsx +60 -0
  681. package/src/components/TableOfContentList/TableOfContentList.types.ts +39 -0
  682. package/src/components/TableOfContentList/TableOfContentList.variants.ts +6 -0
  683. package/src/components/TableOfContentList/index.ts +2 -0
  684. package/src/components/Tabs/Tabs.tsx +80 -0
  685. package/src/components/Tabs/Tabs.types.ts +36 -0
  686. package/src/components/Tabs/Tabs.variants.ts +23 -0
  687. package/src/components/Tabs/index.ts +2 -0
  688. package/src/components/Tag/Tag.tsx +114 -0
  689. package/src/components/Tag/Tag.types.ts +32 -0
  690. package/src/components/Tag/Tag.variants.ts +57 -0
  691. package/src/components/Tag/index.ts +2 -0
  692. package/src/components/TagCount/TagCount.tsx +45 -0
  693. package/src/components/TagCount/TagCount.types.ts +21 -0
  694. package/src/components/TagCount/TagCount.variants.ts +26 -0
  695. package/src/components/TagCount/index.ts +7 -0
  696. package/src/components/TextArea/TextArea.tsx +130 -0
  697. package/src/components/TextArea/TextArea.types.ts +20 -0
  698. package/src/components/TextArea/index.ts +2 -0
  699. package/src/components/TextInput/TextInput.tsx +568 -0
  700. package/src/components/TextInput/TextInput.types.ts +87 -0
  701. package/src/components/TextInput/TextInput.variants.ts +89 -0
  702. package/src/components/TextInput/TextInputTag.tsx +43 -0
  703. package/src/components/TextInput/TextInputTag.types.ts +14 -0
  704. package/src/components/TextInput/index.ts +4 -0
  705. package/src/components/Tooltip/Tooltip.tsx +229 -0
  706. package/src/components/Tooltip/Tooltip.types.ts +48 -0
  707. package/src/components/Tooltip/Tooltip.variants.ts +141 -0
  708. package/src/components/Tooltip/index.ts +10 -0
  709. package/src/components/TreeView/TreeView.tsx +130 -0
  710. package/src/components/TreeView/TreeView.types.ts +42 -0
  711. package/src/components/TreeView/TreeView.variants.ts +6 -0
  712. package/src/components/TreeView/index.ts +3 -0
  713. package/src/components/TreeViewItem/TreeViewItem.tsx +108 -0
  714. package/src/components/TreeViewItem/TreeViewItem.types.ts +34 -0
  715. package/src/components/TreeViewItem/TreeViewItem.variants.ts +40 -0
  716. package/src/components/TreeViewItem/index.ts +3 -0
  717. package/src/components/VerticalTabs/VerticalTabs.tsx +84 -0
  718. package/src/components/VerticalTabs/VerticalTabs.types.ts +37 -0
  719. package/src/components/VerticalTabs/VerticalTabs.variants.ts +43 -0
  720. package/src/components/VerticalTabs/index.ts +6 -0
  721. package/src/components/VideoPlayer/VideoPlayer.tsx +470 -0
  722. package/src/components/VideoPlayer/VideoPlayer.types.ts +59 -0
  723. package/src/components/VideoPlayer/VideoPlayer.variants.ts +134 -0
  724. package/src/components/VideoPlayer/index.ts +2 -0
  725. package/src/components/XAxis/XAxis.tsx +67 -0
  726. package/src/components/XAxis/XAxis.types.ts +30 -0
  727. package/src/components/XAxis/XAxis.variants.ts +77 -0
  728. package/src/components/XAxis/index.ts +2 -0
  729. package/src/components/YAxis/YAxis.tsx +78 -0
  730. package/src/components/YAxis/YAxis.types.ts +41 -0
  731. package/src/components/YAxis/YAxis.variants.ts +94 -0
  732. package/src/components/YAxis/index.ts +2 -0
  733. package/src/dga-icons.ts +18 -0
  734. package/src/hooks/usePresence.ts +73 -0
  735. package/src/icons/AIIcon.tsx +34 -0
  736. package/src/icons/AaIcon.tsx +34 -0
  737. package/src/icons/AlertCircle02Icon.tsx +28 -0
  738. package/src/icons/AlertCircleIcon.tsx +29 -0
  739. package/src/icons/AlertCircleSVG.tsx +19 -0
  740. package/src/icons/AlertCircleWarningIcon.tsx +37 -0
  741. package/src/icons/AlertTriangleIcon.tsx +27 -0
  742. package/src/icons/AlignCenterIcon.tsx +31 -0
  743. package/src/icons/AlignLeftIcon.tsx +31 -0
  744. package/src/icons/AlignRightIcon.tsx +31 -0
  745. package/src/icons/ArrowDownIcon.tsx +27 -0
  746. package/src/icons/ArrowDownLeft01Icon.tsx +32 -0
  747. package/src/icons/ArrowDownSVG.tsx +16 -0
  748. package/src/icons/ArrowIcon.tsx +38 -0
  749. package/src/icons/ArrowLeft01Icon.tsx +23 -0
  750. package/src/icons/ArrowLeft02SVG.tsx +19 -0
  751. package/src/icons/ArrowLeftIcon.tsx +28 -0
  752. package/src/icons/ArrowRight01Icon.tsx +23 -0
  753. package/src/icons/ArrowRight01SVG.tsx +16 -0
  754. package/src/icons/ArrowRightIcon.tsx +28 -0
  755. package/src/icons/ArrowUpIcon.tsx +27 -0
  756. package/src/icons/ArrowUpRight01Icon.tsx +31 -0
  757. package/src/icons/ArrowUpSVG.tsx +16 -0
  758. package/src/icons/AtIcon.tsx +33 -0
  759. package/src/icons/BeakBottom.tsx +13 -0
  760. package/src/icons/BeakDown.tsx +29 -0
  761. package/src/icons/BeakLeft.tsx +13 -0
  762. package/src/icons/BeakRight.tsx +11 -0
  763. package/src/icons/BeakTop.tsx +13 -0
  764. package/src/icons/BeakUp.tsx +23 -0
  765. package/src/icons/BellCircleIcon.tsx +33 -0
  766. package/src/icons/BellIcon.tsx +27 -0
  767. package/src/icons/BoldIcon.tsx +33 -0
  768. package/src/icons/CalendarIcon.tsx +35 -0
  769. package/src/icons/ChartsIcon.tsx +25 -0
  770. package/src/icons/CheckCircleIcon.tsx +29 -0
  771. package/src/icons/ChevronDownIcon.tsx +30 -0
  772. package/src/icons/ChevronDownSmIcon.tsx +34 -0
  773. package/src/icons/ChevronLeftIcon.tsx +20 -0
  774. package/src/icons/ChevronRightIcon.tsx +36 -0
  775. package/src/icons/ClearIcon.tsx +34 -0
  776. package/src/icons/ClockIcon.tsx +34 -0
  777. package/src/icons/CloseIcon.tsx +29 -0
  778. package/src/icons/CloudUploadIcon.tsx +21 -0
  779. package/src/icons/CodeSnippetChevronDownIcon.tsx +25 -0
  780. package/src/icons/CodeSnippetCopyIcon.tsx +24 -0
  781. package/src/icons/CodeSnippetStarIcon.tsx +25 -0
  782. package/src/icons/ColorSquareIcon.tsx +42 -0
  783. package/src/icons/ComponentsIcon.tsx +25 -0
  784. package/src/icons/DGALogoSVG.tsx +133 -0
  785. package/src/icons/DeleteIcon.tsx +24 -0
  786. package/src/icons/DownloadIcon.tsx +29 -0
  787. package/src/icons/DragHandleVerticalIcon.tsx +23 -0
  788. package/src/icons/FeedbackEmojiDislikeIcon.tsx +20 -0
  789. package/src/icons/FeedbackEmojiLikeIcon.tsx +20 -0
  790. package/src/icons/FeedbackEmojiNeutralIcon.tsx +20 -0
  791. package/src/icons/FeedbackThumbDislikeFilledIcon.tsx +26 -0
  792. package/src/icons/FeedbackThumbDislikeIcon.tsx +20 -0
  793. package/src/icons/FeedbackThumbLikeFilledIcon.tsx +20 -0
  794. package/src/icons/FeedbackThumbLikeIcon.tsx +20 -0
  795. package/src/icons/FileUploadItemCloseIcon.tsx +30 -0
  796. package/src/icons/FileUploadItemEmptyFileIcon.tsx +27 -0
  797. package/src/icons/FileUploadItemPdfIcon.tsx +52 -0
  798. package/src/icons/FilterFunnelIcon.tsx +34 -0
  799. package/src/icons/FilterIcon.tsx +31 -0
  800. package/src/icons/FitIcon.tsx +22 -0
  801. package/src/icons/FolderFilledIcon.tsx +25 -0
  802. package/src/icons/FolderIcon.tsx +28 -0
  803. package/src/icons/FoundationsIcon.tsx +25 -0
  804. package/src/icons/FullscreenExitIcon.tsx +71 -0
  805. package/src/icons/FullscreenIcon.tsx +70 -0
  806. package/src/icons/GoBackward10Icon.tsx +27 -0
  807. package/src/icons/GoForward10Icon.tsx +27 -0
  808. package/src/icons/GridSquaresIcon.tsx +40 -0
  809. package/src/icons/HamburgerIcon.tsx +28 -0
  810. package/src/icons/HelpCircleIcon.tsx +28 -0
  811. package/src/icons/HomeIcon.tsx +22 -0
  812. package/src/icons/HomeSVG.tsx +32 -0
  813. package/src/icons/IconFactory.ts +157 -0
  814. package/src/icons/Image01SVG.tsx +18 -0
  815. package/src/icons/ImageIcon.tsx +31 -0
  816. package/src/icons/InfoCircleIcon.tsx +31 -0
  817. package/src/icons/InfoCircleSVG.tsx +20 -0
  818. package/src/icons/InfoIcon.tsx +27 -0
  819. package/src/icons/ItalicIcon.tsx +31 -0
  820. package/src/icons/LearnMoreArrowIcon.tsx +22 -0
  821. package/src/icons/LinkCircleSVG.tsx +58 -0
  822. package/src/icons/LinkIcon.tsx +33 -0
  823. package/src/icons/ListLinesIcon.tsx +40 -0
  824. package/src/icons/LockCircleSVG.tsx +60 -0
  825. package/src/icons/LockIcon.tsx +36 -0
  826. package/src/icons/Logout02Icon.tsx +19 -0
  827. package/src/icons/MicrophoneIcon.tsx +20 -0
  828. package/src/icons/MinusIcon.tsx +40 -0
  829. package/src/icons/MoreHorizontalIcon.tsx +24 -0
  830. package/src/icons/MoreVerticalIcon.tsx +40 -0
  831. package/src/icons/NextIcon.tsx +44 -0
  832. package/src/icons/PDFSvg.tsx +39 -0
  833. package/src/icons/PatternsIcon.tsx +21 -0
  834. package/src/icons/PauseIcon.tsx +30 -0
  835. package/src/icons/PencilIcon.tsx +36 -0
  836. package/src/icons/PlayButtonCardIcon.tsx +41 -0
  837. package/src/icons/PlayCenterIcon.tsx +45 -0
  838. package/src/icons/PlayIcon.tsx +27 -0
  839. package/src/icons/PlayIconSolid.tsx +33 -0
  840. package/src/icons/PlayIconStroke.tsx +22 -0
  841. package/src/icons/PlayIconTwotone.tsx +36 -0
  842. package/src/icons/PlayVideoIcon.tsx +31 -0
  843. package/src/icons/PlusCircleIcon.tsx +41 -0
  844. package/src/icons/PlusIcon.tsx +43 -0
  845. package/src/icons/PreviousIcon.tsx +44 -0
  846. package/src/icons/PrintIcon.tsx +25 -0
  847. package/src/icons/QuestionMarkGrayBgIcon.tsx +52 -0
  848. package/src/icons/QuestionMarkIcon.tsx +47 -0
  849. package/src/icons/RedoIcon.tsx +41 -0
  850. package/src/icons/SaudiFlagSVG.tsx +31 -0
  851. package/src/icons/SdaiaNavLogo.tsx +345 -0
  852. package/src/icons/SearchIcon.tsx +34 -0
  853. package/src/icons/SettingsIcon.tsx +25 -0
  854. package/src/icons/ShareIcon.tsx +26 -0
  855. package/src/icons/SidebarCollapseIcon.tsx +25 -0
  856. package/src/icons/SmileIcon.tsx +34 -0
  857. package/src/icons/SortIcon.tsx +20 -0
  858. package/src/icons/StarIcon.tsx +38 -0
  859. package/src/icons/StatusBadgeIcon.tsx +19 -0
  860. package/src/icons/TextTIcon.tsx +33 -0
  861. package/src/icons/Tick02Icon.tsx +32 -0
  862. package/src/icons/TickIcon.tsx +33 -0
  863. package/src/icons/TrashIcon.tsx +44 -0
  864. package/src/icons/UnderlineIcon.tsx +31 -0
  865. package/src/icons/UndoIcon.tsx +31 -0
  866. package/src/icons/UploadArrowIcon.tsx +40 -0
  867. package/src/icons/UserIcon.tsx +21 -0
  868. package/src/icons/VolumeHighIcon.tsx +27 -0
  869. package/src/icons/VolumeMuteIcon.tsx +53 -0
  870. package/src/icons/XCircleIcon.tsx +32 -0
  871. package/src/icons/XIcon.tsx +27 -0
  872. package/src/icons/XIconSVG.tsx +16 -0
  873. package/src/icons/XSmallIcon.tsx +29 -0
  874. package/src/icons/XSvg.tsx +18 -0
  875. package/src/icons/ZoomInIcon.tsx +25 -0
  876. package/src/icons/index.ts +5 -0
  877. package/src/index.ts +699 -0
  878. package/src/lib/cn.ts +42 -0
  879. package/src/styles/motion.css +120 -0
  880. package/src/styles.css +242 -0
@@ -0,0 +1,25 @@
1
+ 'use client';
2
+
3
+ import type { SVGProps } from 'react';
4
+
5
+ /** Foundations / text-creation icon — 16×16 viewport. */
6
+ export function FoundationsIcon(props: SVGProps<SVGSVGElement>) {
7
+ return (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ width="100%"
11
+ height="100%"
12
+ viewBox="0 0 16 16"
13
+ fill="none"
14
+ aria-hidden="true"
15
+ {...props}
16
+ >
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M3.33301 0.832031C3.97734 0.832031 4.5 1.35469 4.5 1.99902V2.16602H11.5V1.99902C11.5 1.35469 12.0227 0.832031 12.667 0.832031H14C14.6443 0.832031 15.167 1.35469 15.167 1.99902V3.33203C15.167 3.97636 14.6443 4.49902 14 4.49902H13.833V11.499H14C14.6443 11.499 15.167 12.0217 15.167 12.666V13.999C15.167 14.6434 14.6443 15.166 14 15.166H12.667C12.0227 15.166 11.5 14.6434 11.5 13.999V13.832H4.5V13.999C4.5 14.6434 3.97734 15.166 3.33301 15.166H2C1.35567 15.166 0.833008 14.6434 0.833008 13.999V12.666C0.833008 12.0217 1.35567 11.499 2 11.499H2.16699V4.49902H2C1.35567 4.49902 0.833008 3.97636 0.833008 3.33203V1.99902C0.833008 1.35469 1.35567 0.832031 2 0.832031H3.33301ZM2 12.499C1.90795 12.499 1.83301 12.574 1.83301 12.666V13.999C1.83301 14.0911 1.90795 14.166 2 14.166H3.33301C3.42506 14.166 3.5 14.0911 3.5 13.999V12.666C3.5 12.574 3.42506 12.499 3.33301 12.499H2ZM12.667 12.499C12.5749 12.499 12.5 12.574 12.5 12.666V13.999C12.5 14.0911 12.5749 14.166 12.667 14.166H14C14.092 14.166 14.167 14.0911 14.167 13.999V12.666C14.167 12.574 14.092 12.499 14 12.499H12.667ZM4.5 3.33203C4.5 3.97636 3.97734 4.49902 3.33301 4.49902H3.16699V11.499H3.33301C3.97734 11.499 4.5 12.0217 4.5 12.666V12.832H11.5V12.666C11.5 12.0217 12.0227 11.499 12.667 11.499H12.833V4.49902H12.667C12.0227 4.49902 11.5 3.97636 11.5 3.33203V3.16602H4.5V3.33203ZM7.9834 4.83203C8.48564 4.84332 8.9298 4.86202 9.30762 4.90332C9.68072 4.94411 10.0234 5.01033 10.3076 5.13281C10.6022 5.25984 10.8605 5.46039 11.0088 5.77344C11.1513 6.07454 11.1589 6.41086 11.1045 6.74609C11.0602 7.01852 10.8028 7.20338 10.5303 7.15918C10.2579 7.11489 10.0731 6.85836 10.1172 6.58594C10.1544 6.35648 10.1271 6.24883 10.1045 6.20117C10.0875 6.1654 10.0491 6.11121 9.91113 6.05176C9.76266 5.98779 9.53641 5.93434 9.19922 5.89746C8.98851 5.87443 8.74716 5.85889 8.47266 5.84766V10.166H8.96191C9.23791 10.1662 9.46191 10.39 9.46191 10.666C9.46174 10.9419 9.2378 11.1658 8.96191 11.166H6.98242C6.7066 11.1658 6.4826 10.9419 6.48242 10.666C6.48242 10.39 6.70649 10.1663 6.98242 10.166H7.47266V5.84668C7.1699 5.85937 6.90936 5.87868 6.6875 5.90625C6.34541 5.94878 6.12614 6.00821 5.98926 6.07324C5.86498 6.13236 5.83644 6.18228 5.82422 6.21191C5.8056 6.25717 5.78514 6.35916 5.8252 6.57324C5.87604 6.84466 5.6972 7.10638 5.42578 7.15723C5.15449 7.2079 4.89365 7.02909 4.84277 6.75781C4.78497 6.44927 4.7774 6.12762 4.89941 5.83105C5.02793 5.51909 5.26873 5.30826 5.55957 5.16992C5.83813 5.03749 6.1805 4.96178 6.56445 4.91406C6.95359 4.8657 7.4196 4.84206 7.96289 4.83203C7.96968 4.83191 7.97661 4.83188 7.9834 4.83203ZM2 1.83203C1.90795 1.83203 1.83301 1.90698 1.83301 1.99902V3.33203C1.83301 3.42408 1.90795 3.49902 2 3.49902H3.33301C3.42506 3.49902 3.5 3.42408 3.5 3.33203V1.99902C3.5 1.90698 3.42506 1.83203 3.33301 1.83203H2ZM12.667 1.83203C12.5749 1.83203 12.5 1.90698 12.5 1.99902V3.33203C12.5 3.42408 12.5749 3.49902 12.667 3.49902H14C14.092 3.49902 14.167 3.42408 14.167 3.33203V1.99902C14.167 1.90698 14.092 1.83203 14 1.83203H12.667Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ );
25
+ }
@@ -0,0 +1,71 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ─────────────────────────────────────────────────────────────────
4
+ VideoPlayer/icons.tsx
5
+ Exact SVG paths provided directly from Figma by the designer.
6
+
7
+ Rules (per Component Build Guide §2b):
8
+ - width="100%" height="100%" — size controlled by wrapping span
9
+ - fill="currentColor" on all paths — inherits text colour from
10
+ parent so dark-mode, disabled states, and hover work automatically.
11
+ Figma exports use fill="#F3F4F6" (near-white); we convert to
12
+ currentColor so the component CSS colour token drives the shade.
13
+ ──────────────────────────────────────────────────────────────────── */
14
+
15
+ /**
16
+ * Large centre play button shown in the Default (paused) state.
17
+ * Figma: 48×48 px. Used in a 48×48 wrapper.
18
+ */
19
+
20
+ export function FullscreenExitIcon(props: SVGProps<SVGSVGElement>) {
21
+ return (
22
+ <svg
23
+ width="100%"
24
+ height="100%"
25
+ viewBox="0 0 20 20"
26
+ fill="none"
27
+ xmlns="http://www.w3.org/2000/svg"
28
+ aria-hidden="true"
29
+ {...props}
30
+ >
31
+ {/* Top-left: elbow at (7.5,7.5), arms go toward corner */}
32
+ <path
33
+ d="M3 7.5H7.5V3"
34
+ stroke="currentColor"
35
+ strokeWidth="1.75"
36
+ strokeLinecap="round"
37
+ strokeLinejoin="round"
38
+ />
39
+ {/* Top-right */}
40
+ <path
41
+ d="M17 7.5H12.5V3"
42
+ stroke="currentColor"
43
+ strokeWidth="1.75"
44
+ strokeLinecap="round"
45
+ strokeLinejoin="round"
46
+ />
47
+ {/* Bottom-left */}
48
+ <path
49
+ d="M3 12.5H7.5V17"
50
+ stroke="currentColor"
51
+ strokeWidth="1.75"
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ {/* Bottom-right */}
56
+ <path
57
+ d="M17 12.5H12.5V17"
58
+ stroke="currentColor"
59
+ strokeWidth="1.75"
60
+ strokeLinecap="round"
61
+ strokeLinejoin="round"
62
+ />
63
+ </svg>
64
+ );
65
+ }
66
+
67
+ /**
68
+ * Volume muted icon — speaker body only, no arcs, with an X mark.
69
+ * Shares the speaker body path from VolumeHighIcon.
70
+ * 20×20 px.
71
+ */
@@ -0,0 +1,70 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ─────────────────────────────────────────────────────────────────
4
+ VideoPlayer/icons.tsx
5
+ Exact SVG paths provided directly from Figma by the designer.
6
+
7
+ Rules (per Component Build Guide §2b):
8
+ - width="100%" height="100%" — size controlled by wrapping span
9
+ - fill="currentColor" on all paths — inherits text colour from
10
+ parent so dark-mode, disabled states, and hover work automatically.
11
+ Figma exports use fill="#F3F4F6" (near-white); we convert to
12
+ currentColor so the component CSS colour token drives the shade.
13
+ ──────────────────────────────────────────────────────────────────── */
14
+
15
+ /**
16
+ * Large centre play button shown in the Default (paused) state.
17
+ * Figma: 48×48 px. Used in a 48×48 wrapper.
18
+ */
19
+
20
+ export function FullscreenIcon(props: SVGProps<SVGSVGElement>) {
21
+ return (
22
+ <svg
23
+ width="100%"
24
+ height="100%"
25
+ viewBox="0 0 20 20"
26
+ fill="none"
27
+ xmlns="http://www.w3.org/2000/svg"
28
+ aria-hidden="true"
29
+ {...props}
30
+ >
31
+ {/* Top-left */}
32
+ <path
33
+ d="M3 8V3H8"
34
+ stroke="currentColor"
35
+ strokeWidth="1.75"
36
+ strokeLinecap="round"
37
+ strokeLinejoin="round"
38
+ />
39
+ {/* Top-right */}
40
+ <path
41
+ d="M17 8V3H12"
42
+ stroke="currentColor"
43
+ strokeWidth="1.75"
44
+ strokeLinecap="round"
45
+ strokeLinejoin="round"
46
+ />
47
+ {/* Bottom-left */}
48
+ <path
49
+ d="M3 12V17H8"
50
+ stroke="currentColor"
51
+ strokeWidth="1.75"
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ {/* Bottom-right */}
56
+ <path
57
+ d="M17 12V17H12"
58
+ stroke="currentColor"
59
+ strokeWidth="1.75"
60
+ strokeLinecap="round"
61
+ strokeLinejoin="round"
62
+ />
63
+ </svg>
64
+ );
65
+ }
66
+
67
+ /**
68
+ * Fullscreen exit / collapse icon — four inward-pointing L-shapes near center.
69
+ * 20×20 px. Standard collapse/exit-fullscreen convention.
70
+ */
@@ -0,0 +1,27 @@
1
+ /* ─────────────────────────────────────────────────────────────────
2
+ icons.tsx — AudioPlayer icon set
3
+ All paths retrieved directly from Figma asset exports.
4
+ fill="currentColor" enables dark-mode & hover state via CSS.
5
+ Icon names match Figma component names exactly.
6
+ ──────────────────────────────────────────────────────────────────── */
7
+
8
+ /** go-backward-10-sec — viewBox 0 0 17.915 17.917 */
9
+
10
+ export function GoBackward10Icon() {
11
+ return (
12
+ <svg
13
+ width="100%"
14
+ height="100%"
15
+ viewBox="0 0 17.915 17.917"
16
+ fill="none"
17
+ aria-hidden="true"
18
+ >
19
+ <path
20
+ fill="currentColor"
21
+ d="M8.95703 0C13.897 0 17.915 4.01801 17.915 8.95801C17.915 13.898 13.897 17.916 8.95703 17.916L8.95801 17.917C4.01807 17.917 8.81194e-05 13.8989 0 8.95898C0 6.11482 1.30536 3.50185 3.58203 1.79102C3.85775 1.58365 4.24948 1.63951 4.45703 1.91504C4.66448 2.19081 4.60868 2.5825 4.33301 2.79004C2.37301 4.26254 1.24902 6.51134 1.24902 8.95801C1.24902 13.208 4.7071 16.6659 8.95703 16.666C13.207 16.666 16.665 13.208 16.665 8.95801C16.665 4.70801 13.207 1.25 8.95703 1.25C8.83958 1.25 8.72022 1.25198 8.59277 1.25781C8.52951 1.26114 8.46267 1.26342 8.39941 1.26758C8.44608 1.33424 8.49645 1.40516 8.54395 1.47266L9.46582 2.76172C9.66629 3.04252 9.60101 3.43208 9.32031 3.63281C9.03961 3.8335 8.65012 3.76877 8.44922 3.48828L7.5293 2.2002C7.12096 1.6277 6.7985 1.17693 7.06934 0.621094C7.34018 0.0653195 7.89323 0.0397645 8.5332 0.00976562C8.68142 0.00310684 8.82296 2.53715e-06 8.95703 0ZM11.1592 6.66699C11.7117 6.67317 12.3287 6.74277 12.667 7.31152C12.935 7.76212 12.9303 8.14348 12.9229 8.90234C12.9212 9.063 12.9199 9.24695 12.9199 9.45996V9.47949C12.9099 9.80279 12.9149 10.1236 12.9199 10.4336C12.9358 11.3644 12.947 12.0431 12.5479 12.4355C12.1105 12.916 11.5724 12.9205 11.0518 12.9238L10.9072 12.9248L10.9062 12.9258H10.8975C10.8233 12.9241 10.7505 12.9248 10.6797 12.9248C10.1439 12.9231 9.53812 12.9202 9.11816 12.4229C8.71733 11.9804 8.73503 11.3552 8.75586 10.6318C8.76502 10.2927 8.77608 9.90941 8.74609 9.50781L8.74316 9.4707L8.74512 9.43262C8.75594 9.19434 8.7525 8.97515 8.75 8.7627C8.74167 8.15188 8.7342 7.57395 9.13086 7.14062C9.5591 6.66103 10.1232 6.66366 10.668 6.66699H11.1592ZM5.59863 7.29395C5.9553 6.93811 6.40008 6.49521 6.95508 6.73438C7.54399 6.98609 7.5231 7.60582 7.50977 8.0166C7.50643 8.1091 7.50293 8.21003 7.50293 8.31836V12.2979C7.50293 12.6429 7.22293 12.9229 6.87793 12.9229C6.53308 12.9227 6.25293 12.6427 6.25293 12.2979V8.40234C6.17474 8.47554 6.09347 8.54897 6.00781 8.61719C5.73781 8.83219 5.34391 8.78758 5.12891 8.51758C4.91393 8.24758 4.9595 7.85366 5.22949 7.63867C5.34849 7.54374 5.4755 7.41708 5.59863 7.29395ZM10.6611 7.91602C10.4053 7.91435 10.1149 7.9128 10.0615 7.97363L10.0508 7.98535C9.9883 8.05204 9.99388 8.48595 9.99805 8.74512C10.0005 8.95512 10.0041 9.19117 9.99414 9.45117C10.0258 9.90196 10.0139 10.3079 10.0039 10.667C9.99474 11.007 9.98119 11.4721 10.0479 11.5879V11.5889L10.0713 11.6152C10.118 11.6719 10.4861 11.674 10.6836 11.6748C10.7576 11.6748 10.8338 11.6741 10.9111 11.6758H11.042C11.5047 11.6716 11.5704 11.6545 11.627 11.5898C11.6836 11.409 11.6746 10.8609 11.668 10.4551C11.663 10.1485 11.6571 9.80108 11.668 9.45117C11.668 9.23705 11.6702 9.05115 11.6719 8.88867C11.6785 8.24534 11.6729 8.09915 11.5996 7.96582C11.4918 7.9143 11.1431 7.91518 10.9316 7.91602H10.6611Z"
22
+ />
23
+ </svg>
24
+ );
25
+ }
26
+
27
+ /** pause — viewBox 0 0 29.166 29.166 */
@@ -0,0 +1,27 @@
1
+ /* ─────────────────────────────────────────────────────────────────
2
+ icons.tsx — AudioPlayer icon set
3
+ All paths retrieved directly from Figma asset exports.
4
+ fill="currentColor" enables dark-mode & hover state via CSS.
5
+ Icon names match Figma component names exactly.
6
+ ──────────────────────────────────────────────────────────────────── */
7
+
8
+ /** go-backward-10-sec — viewBox 0 0 17.915 17.917 */
9
+
10
+ export function GoForward10Icon() {
11
+ return (
12
+ <svg
13
+ width="100%"
14
+ height="100%"
15
+ viewBox="0 0 17.917 17.918"
16
+ fill="none"
17
+ aria-hidden="true"
18
+ >
19
+ <path
20
+ fill="currentColor"
21
+ d="M9.38477 0.00879125C9.99474 0.0362902 10.5695 0.0648299 10.8428 0.612307C10.8444 0.614785 10.846 0.617626 10.8477 0.620119C11.1185 1.18262 10.7782 1.65422 10.3857 2.19922L9.46777 3.48731C9.26777 3.76789 8.87743 3.83359 8.59668 3.63379C8.31603 3.43392 8.24969 3.04349 8.44922 2.7627L9.37012 1.47071C9.41754 1.40497 9.46819 1.33498 9.51562 1.26758C9.44987 1.26425 9.38319 1.26031 9.32324 1.25781H9.31152C9.20156 1.25115 9.0831 1.25098 8.95898 1.25098C4.70898 1.25098 1.25098 4.70996 1.25098 8.95996C1.25115 13.2098 4.70909 16.668 8.95898 16.668C13.2088 16.6679 16.6668 13.2098 16.667 8.95996C16.667 6.545 15.5148 4.23964 13.584 2.79297C13.3082 2.5863 13.2515 2.19464 13.459 1.91797C13.6657 1.64136 14.0573 1.58549 14.334 1.79297C16.5781 3.47464 17.917 6.15416 17.917 8.95996C17.9168 13.8998 13.8988 17.9179 8.95898 17.918L8.95801 17.916C4.01801 17.916 0 13.898 0 8.95801C1.33386e-06 4.01801 4.01801 7.84656e-06 8.95801 2.18768e-06C9.09467 2.18768e-06 9.23643 -0.000375417 9.38477 0.00879125ZM5.59766 7.29297C5.95511 6.93718 6.40134 6.49458 6.95703 6.73535C7.54386 6.9896 7.5231 7.60644 7.50977 8.01465C7.50643 8.10626 7.50293 8.20733 7.50293 8.31641V12.2998C7.50293 12.6448 7.22293 12.9248 6.87793 12.9248C6.53309 12.9246 6.25294 12.6457 6.25293 12.3008V8.40039C6.17475 8.47357 6.09347 8.54704 6.00781 8.61524C5.73781 8.83024 5.34391 8.78465 5.12891 8.51465C4.91416 8.24466 4.95958 7.85165 5.22949 7.63672C5.34777 7.54257 5.47522 7.41541 5.59766 7.29297ZM10.9326 6.66699C11.5317 6.66366 12.2783 6.66047 12.6641 7.30371C12.9331 7.76282 12.9302 8.14297 12.9219 8.90039C12.9202 9.06119 12.918 9.24573 12.918 9.45899V9.47754C12.908 9.80079 12.913 10.1217 12.918 10.4316C12.9338 11.3622 12.9456 12.0413 12.5469 12.4355C12.1094 12.913 11.5716 12.919 11.0508 12.9248L10.9072 12.9258H10.8994C10.8269 12.925 10.7557 12.9256 10.6865 12.9248C10.1474 12.9248 9.5369 12.9223 9.11523 12.4189C8.71649 11.9765 8.73391 11.3513 8.75391 10.6299C8.76307 10.2908 8.77413 9.90741 8.74414 9.50586L8.74121 9.46875L8.74316 9.43067C8.75398 9.19248 8.75055 8.97313 8.74805 8.76074C8.73972 8.15009 8.73258 7.57289 9.12988 7.13965C9.55728 6.6606 10.1188 6.66366 10.6611 6.66699H10.9326ZM10.6553 7.91797C10.402 7.9163 10.1142 7.91448 10.0625 7.97364L10.0518 7.98535C9.98926 8.05201 9.99486 8.48594 9.99902 8.74512C10.0015 8.95512 10.0051 9.19117 9.99512 9.45117C10.0268 9.90196 10.0149 10.3079 10.0049 10.667C9.99572 11.007 9.98217 11.4721 10.0488 11.5879L10.0479 11.5869L10.0732 11.6162C10.1211 11.6744 10.4893 11.674 10.6875 11.6748C10.7591 11.6748 10.8333 11.675 10.9082 11.6758L11.0381 11.6748C11.4739 11.6706 11.5653 11.6564 11.627 11.5889C11.6843 11.4094 11.6755 10.8596 11.668 10.4531C11.663 10.1466 11.6571 9.79921 11.668 9.4502C11.668 9.23604 11.6702 9.0502 11.6719 8.8877C11.6785 8.2527 11.6732 8.10068 11.6016 7.96485C11.4923 7.91493 11.1476 7.91631 10.9385 7.91797H10.6553Z"
22
+ />
23
+ </svg>
24
+ );
25
+ }
26
+
27
+ /** volume-high — viewBox 0 0 18.1251 14.5856 */
@@ -0,0 +1,40 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /**
4
+ * Magnifying-glass search icon.
5
+ * Used as the prefix inside the search TextInput.
6
+ * Figma: search-01
7
+ */
8
+
9
+ export function GridSquaresIcon(props: SVGProps<SVGSVGElement>) {
10
+ return (
11
+ <svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width="100%"
14
+ height="100%"
15
+ viewBox="0 0 24 24"
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ {/* Top-right square — 40 % opacity */}
20
+ <path
21
+ opacity="0.4"
22
+ fillRule="evenodd"
23
+ clipRule="evenodd"
24
+ d="M15.4553 1.25C15.4701 1.25001 15.485 1.25001 15.5 1.25001L20 1.25001C20.015 1.25001 20.0299 1.25001 20.0448 1.25C20.4776 1.24995 20.8744 1.24991 21.1972 1.29331C21.5527 1.3411 21.9284 1.45355 22.2374 1.76257C22.5465 2.07159 22.6589 2.44732 22.7067 2.8028C22.7501 3.12561 22.7501 3.52245 22.75 3.95526C22.75 3.97014 22.75 3.98505 22.75 4.00001V8.50001C22.75 8.51496 22.75 8.52988 22.75 8.54475C22.7501 8.97757 22.7501 9.3744 22.7067 9.69721C22.6589 10.0527 22.5465 10.4284 22.2374 10.7374C21.9284 11.0465 21.5527 11.1589 21.1972 11.2067C20.8744 11.2501 20.4776 11.2501 20.0448 11.25C20.0299 11.25 20.015 11.25 20 11.25L15.5 11.25C15.4851 11.25 15.4701 11.25 15.4553 11.25C15.0224 11.2501 14.6256 11.2501 14.3028 11.2067C13.9473 11.1589 13.5716 11.0465 13.2626 10.7374C12.9535 10.4284 12.8411 10.0527 12.7933 9.69721C12.7499 9.3744 12.75 8.97757 12.75 8.54475C12.75 8.52988 12.75 8.51496 12.75 8.50001L12.75 4.00001C12.75 3.98505 12.75 3.97013 12.75 3.95526C12.75 3.52244 12.7499 3.12561 12.7933 2.8028C12.8411 2.44732 12.9535 2.07159 13.2626 1.76257C13.5716 1.45355 13.9473 1.3411 14.3028 1.29331C14.6256 1.24991 15.0224 1.24995 15.4553 1.25ZM14.3232 2.82324L14.3257 2.82187C14.3276 2.82086 14.3309 2.81924 14.336 2.81717C14.3578 2.80821 14.4061 2.79291 14.5027 2.77993C14.7134 2.7516 15.0074 2.75001 15.5 2.75001L20 2.75001C20.4926 2.75001 20.7866 2.7516 20.9973 2.77993C21.0939 2.79291 21.1423 2.80821 21.164 2.81717C21.1691 2.81924 21.1724 2.82086 21.1743 2.82187L21.1768 2.82324L21.1781 2.82568C21.1792 2.82761 21.1808 2.83093 21.1828 2.83597C21.1918 2.85775 21.2071 2.90611 21.2201 3.00267C21.2484 3.21339 21.25 3.5074 21.25 4.00001V8.50001C21.25 8.99261 21.2484 9.28662 21.2201 9.49734C21.2071 9.5939 21.1918 9.64226 21.1828 9.66404C21.1808 9.66909 21.1792 9.6724 21.1781 9.67434L21.1768 9.67677L21.1743 9.67815C21.1724 9.67916 21.1691 9.68077 21.164 9.68285C21.1423 9.69181 21.0939 9.7071 20.9973 9.72008C20.7866 9.74841 20.4926 9.75001 20 9.75001L15.5 9.75001C15.0074 9.75001 14.7134 9.74841 14.5027 9.72008C14.4061 9.7071 14.3578 9.69181 14.336 9.68285C14.3309 9.68077 14.3276 9.67916 14.3257 9.67815L14.3232 9.67677L14.3219 9.67434C14.3209 9.6724 14.3192 9.66909 14.3172 9.66404C14.3082 9.64226 14.2929 9.5939 14.2799 9.49734C14.2516 9.28662 14.25 8.99261 14.25 8.50001L14.25 4.00001C14.25 3.5074 14.2516 3.21339 14.2799 3.00267C14.2929 2.90611 14.3082 2.85775 14.3172 2.83597C14.3192 2.83093 14.3209 2.82761 14.3219 2.82568L14.3232 2.82324Z"
25
+ fill="currentColor"
26
+ />
27
+ {/* Top-left, bottom-left, bottom-right squares — full opacity */}
28
+ <path
29
+ d="M8.54492 11.25C8.97766 11.2501 9.3745 11.2504 9.69727 11.207C10.0527 11.1592 10.4283 11.0463 10.7373 10.7373C11.0463 10.4283 11.1592 10.0527 11.207 9.69727C11.2504 9.3745 11.2501 8.97767 11.25 8.54492L11.25 3.95508C11.2501 3.52234 11.2504 3.1255 11.207 2.80273C11.1592 2.44726 11.0463 2.07171 10.7373 1.7627C10.4283 1.45368 10.0527 1.34076 9.69727 1.29297C9.3745 1.24957 8.97767 1.24995 8.54492 1.25L3.95508 1.25C3.52233 1.24995 3.1255 1.24957 2.80273 1.29297C2.44726 1.34076 2.07171 1.45368 1.7627 1.7627C1.45368 2.07171 1.34076 2.44726 1.29297 2.80273C1.24957 3.1255 1.24995 3.52233 1.25 3.95508L1.25 8.54492C1.24995 8.97767 1.24957 9.3745 1.29297 9.69727C1.34076 10.0527 1.45368 10.4283 1.7627 10.7373C2.07171 11.0463 2.44726 11.1592 2.80273 11.207C3.1255 11.2504 3.52233 11.2501 3.95508 11.25L8.54492 11.25ZM4 9.75C3.50756 9.75 3.21364 9.74803 3.00293 9.71973C2.85376 9.71973 2.79237 9.57132 2.78027 9.49707C2.75197 9.28636 2.75 8.99244 2.75 8.5L2.75 4C2.75 3.50756 2.75197 3.21364 2.78027 3.00293C2.78027 2.83638 2.92868 2.78513 3.00293 2.78027C3.21364 2.75197 3.50756 2.75 4 2.75L8.5 2.75C8.99244 2.75 9.28636 2.75197 9.49707 2.78027C9.57132 2.77161 9.71973 2.80394 9.71973 3.00293C9.74803 3.21364 9.75 3.50756 9.75 4L9.75 8.5C9.75 8.99244 9.74803 9.28636 9.71973 9.49707C9.71973 9.68707 9.57132 9.72465 9.49707 9.71973C9.28636 9.74803 8.99244 9.75 8.5 9.75H4ZM8.54492 22.75C8.97766 22.7501 9.3745 22.7504 9.69727 22.707C10.0527 22.6592 10.4283 22.5463 10.7373 22.2373C11.0463 21.9283 11.1592 21.5527 11.207 21.1973C11.2504 20.8745 11.2501 20.4777 11.25 20.0449L11.25 15.4551C11.2501 15.0223 11.2504 14.6255 11.207 14.3027C11.1592 13.9473 11.0463 13.5717 10.7373 13.2627C10.4283 12.9537 10.0527 12.8408 9.69727 12.793C9.3745 12.7496 8.97767 12.7499 8.54492 12.75L3.95508 12.75C3.52233 12.7499 3.1255 12.7496 2.80273 12.793C2.44726 12.8408 2.07171 12.9537 1.7627 13.2627C1.45368 13.5717 1.34076 13.9473 1.29297 14.3027C1.24957 14.6255 1.24995 15.0223 1.25 15.4551L1.25 20.0449C1.24995 20.4777 1.24957 20.8745 1.29297 21.1973C1.34076 21.5527 1.45368 21.9283 1.7627 22.2373C2.07171 22.5463 2.44726 22.6592 2.80273 22.707C3.1255 22.7504 3.52233 22.7501 3.95508 22.75L8.54492 22.75ZM20.0449 22.75C20.4777 22.7501 20.8745 22.7504 21.1973 22.707C21.5527 22.6592 21.9283 22.5463 22.2373 22.2373C22.5463 21.9283 22.6592 21.5527 22.707 21.1973C22.7504 20.8745 22.7501 20.4777 22.75 20.0449L22.75 15.4551C22.7501 15.0223 22.7504 14.6255 22.707 14.3027C22.6592 13.9473 22.5463 13.5717 22.2373 13.2627C21.9283 12.9537 21.5527 12.8408 21.1973 12.793C20.8745 12.7496 20.4777 12.7499 20.0449 12.75L15.4551 12.75C15.0223 12.7499 14.6255 12.7496 14.3027 12.793C13.9473 12.8408 13.5717 12.9537 13.2627 13.2627C12.9537 13.5717 12.8408 13.9473 12.793 14.3027C12.7496 14.6255 12.7499 15.0223 12.75 15.4551L12.75 20.0449C12.7499 20.4777 12.7496 20.8745 12.793 21.1973C12.8408 21.5527 12.9537 21.9283 13.2627 22.2373C13.5717 22.5463 13.9473 22.6592 14.3027 22.707C14.6255 22.7504 15.0223 22.7501 15.4551 22.75L20.0449 22.75ZM4 21.25C3.50756 21.25 3.21364 21.248 3.00293 21.2197C2.85376 21.2197 2.79237 21.0713 2.78027 20.9971C2.75197 20.7864 2.75 20.4924 2.75 20L2.75 15.5C2.75 15.0076 2.75197 14.7136 2.78027 14.5029C2.78027 14.3364 2.92868 14.2851 3.00293 14.2803C3.21364 14.252 3.50756 14.25 4 14.25H8.5C8.99244 14.25 9.28636 14.252 9.49707 14.2803C9.57132 14.2716 9.71973 14.3039 9.71973 14.5029C9.74803 14.7136 9.75 15.0076 9.75 15.5V20C9.75 20.4924 9.74803 20.7864 9.71973 20.9971C9.71973 21.1871 9.57132 21.2246 9.49707 21.2197C9.28636 21.248 8.99244 21.25 8.5 21.25L4 21.25ZM15.5 21.25C15.0076 21.25 14.7136 21.248 14.5029 21.2197C14.3538 21.2197 14.2924 21.0713 14.2803 20.9971C14.252 20.7864 14.25 20.4924 14.25 20V15.5C14.25 15.0076 14.252 14.7136 14.2803 14.5029C14.2803 14.3364 14.4287 14.2851 14.5029 14.2803C14.7136 14.252 15.0076 14.25 15.5 14.25L20 14.25C20.4924 14.25 20.7864 14.252 20.9971 14.2803C21.0713 14.2716 21.2197 14.3039 21.2197 14.5029C21.248 14.7136 21.25 15.0076 21.25 15.5L21.25 20C21.25 20.4924 21.248 20.7864 21.2197 20.9971C21.2197 21.1871 21.0713 21.2246 20.9971 21.2197C20.7864 21.248 20.4924 21.25 20 21.25H15.5Z"
30
+ fill="currentColor"
31
+ />
32
+ </svg>
33
+ );
34
+ }
35
+
36
+ /**
37
+ * Trash / delete icon — from Figma (delete-02).
38
+ * Bin body uses currentColor; inner vertical lines use currentColor at 40 % opacity.
39
+ * Used for the delete button in the desktop toolbar.
40
+ */
@@ -0,0 +1,28 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ export function HamburgerIcon(props: SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="100%"
8
+ height="100%"
9
+ viewBox="0 0 20 20"
10
+ fill="none"
11
+ aria-hidden="true"
12
+ {...props}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ fillRule="evenodd"
17
+ clipRule="evenodd"
18
+ d="M2.75 5a.75.75 0 0 1 .75-.75h13a.75.75 0 0 1 0 1.5h-13A.75.75 0 0 1 2.75 5Zm0 5a.75.75 0 0 1 .75-.75h13a.75.75 0 0 1 0 1.5h-13A.75.75 0 0 1 2.75 10Zm0 5a.75.75 0 0 1 .75-.75h13a.75.75 0 0 1 0 1.5h-13A.75.75 0 0 1 2.75 15Z"
19
+ />
20
+ </svg>
21
+ );
22
+ }
23
+
24
+ /**
25
+ * Close / dismiss icon — × cross, 20×20 viewBox.
26
+ * Used as the close button in the mobile expanded drawer header.
27
+ * Uses `fill="currentColor"` to inherit the parent text colour.
28
+ */
@@ -0,0 +1,28 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /**
4
+ * Search icon (search-01) — 20 × 20 px viewBox.
5
+ * Used as the leading affordance in the input and as the icon for suggestion items.
6
+ * Figma: search-01 referenced inside Autocomplete node 6183:86218
7
+ */
8
+
9
+ export function HelpCircleIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
10
+ return (
11
+ <svg
12
+ viewBox="0 0 16 16"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden="true"
16
+ className={className}
17
+ {...props}
18
+ >
19
+ <path
20
+ d="M6.06016 5.99967C6.2169 5.55412 6.52626 5.17841 6.93347 4.9391C7.34067 4.69978 7.81943 4.6123 8.28495 4.69215C8.75047 4.772 9.17271 5.01402 9.47688 5.37536C9.78105 5.7367 9.94753 6.19402 9.94683 6.66634C9.94683 7.99967 7.94683 8.66634 7.94683 8.66634M8.00016 11.333H8.00683M14.6668 7.99967C14.6668 11.6816 11.6821 14.6663 8.00016 14.6663C4.31826 14.6663 1.3335 11.6816 1.3335 7.99967C1.3335 4.31778 4.31826 1.33301 8.00016 1.33301C11.6821 1.33301 14.6668 4.31778 14.6668 7.99967Z"
21
+ stroke="currentColor"
22
+ strokeWidth="1.5"
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </svg>
27
+ );
28
+ }
@@ -0,0 +1,22 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ export function HomeIcon(props: SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="100%"
8
+ height="100%"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ aria-hidden="true"
12
+ {...props}
13
+ >
14
+ <path
15
+ fillRule="evenodd"
16
+ clipRule="evenodd"
17
+ d="M8.41737 1.25C8.99456 1.2501 9.51067 1.43543 10.0678 1.74805C10.6076 2.05104 11.2264 2.4981 12.0043 3.06055L13.0101 3.78809C13.6344 4.23944 14.1331 4.59992 14.5092 4.93359C14.8975 5.27814 15.1882 5.62168 15.3725 6.05371C15.5571 6.48674 15.6023 6.93063 15.5775 7.44238C15.5536 7.93624 15.4622 8.53239 15.348 9.27539L15.1371 10.6426C14.9749 11.6983 14.8464 12.5394 14.6566 13.1943C14.4604 13.8716 14.183 14.4093 13.6889 14.8203C13.1968 15.2295 12.6109 15.4121 11.8949 15.499C11.1983 15.5836 10.3193 15.584 9.20936 15.584H7.6244C6.51444 15.584 5.63548 15.5836 4.93886 15.499C4.22287 15.4121 3.63697 15.2295 3.14491 14.8203C2.65075 14.4093 2.3734 13.8716 2.17714 13.1943C1.98737 12.5394 1.8589 11.6983 1.69667 10.6426L1.48573 9.27539C1.37154 8.53236 1.28015 7.93625 1.25624 7.44238C1.23146 6.93063 1.27662 6.48674 1.46132 6.05371C1.64561 5.62167 1.93627 5.27814 2.3246 4.93359C2.70071 4.59992 3.19935 4.23945 3.82362 3.78809L4.82948 3.06055C5.60736 2.49811 6.22613 2.05104 6.76601 1.74805C7.32326 1.43534 7.83999 1.25 8.41737 1.25ZM8.41737 2.25C8.07271 2.25 7.72762 2.35505 7.25526 2.62012C6.77141 2.89168 6.19834 3.30424 5.39003 3.88867L4.43104 4.58301C3.7806 5.0533 3.32206 5.38497 2.98769 5.68164C2.66141 5.97116 2.48646 6.19959 2.38124 6.44629C2.27646 6.69199 2.2348 6.97016 2.25526 7.39355C2.27636 7.82921 2.35965 8.37442 2.4789 9.15039L2.67909 10.4561C2.84793 11.5547 2.96852 12.3308 3.13808 12.916C3.30325 13.486 3.49923 13.8152 3.78358 14.0518C4.07008 14.29 4.44312 14.4319 5.05995 14.5068C5.68921 14.5832 6.50713 14.584 7.65761 14.584H9.17616C10.3266 14.584 11.1446 14.5832 11.7738 14.5068C12.3906 14.4319 12.7637 14.29 13.0502 14.0518C13.3345 13.8152 13.5305 13.486 13.6957 12.916C13.8653 12.3308 13.9858 11.5547 14.1547 10.4561L14.3549 9.15039C14.4741 8.37442 14.5574 7.82921 14.5785 7.39355C14.599 6.97016 14.5573 6.69199 14.4525 6.44629C14.3473 6.19958 14.1724 5.97116 13.8461 5.68164C13.5117 5.38497 13.0532 5.0533 12.4027 4.58301L11.4437 3.88867C10.6354 3.30423 10.0624 2.89168 9.57851 2.62012C9.10636 2.35517 8.76187 2.2501 8.41737 2.25ZM9.75038 11.917C10.0265 11.9171 10.2504 12.1409 10.2504 12.417C10.2504 12.6931 10.0265 12.9169 9.75038 12.917H7.08339C6.80732 12.9169 6.58339 12.6931 6.58339 12.417C6.58339 12.1409 6.80732 11.9171 7.08339 11.917H9.75038Z"
18
+ fill="currentColor"
19
+ />
20
+ </svg>
21
+ );
22
+ }
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+
3
+ /** True when width/height should come from CSS (wrapper scales the icon). */
4
+ function omitDimsFromClass(className: React.SVGProps<SVGSVGElement>["className"]): boolean {
5
+ if (className == null || typeof className !== "string") return false;
6
+ return /\b(w-full|h-full|size-|!w-|!h-)\b/.test(className);
7
+ }
8
+
9
+ const HomeSVG = ({ className, width, height, ...props }: React.SVGProps<SVGSVGElement>) => {
10
+ const omit =
11
+ omitDimsFromClass(className) || width === "100%" || height === "100%";
12
+
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ viewBox="0 0 16 16"
17
+ fill="none"
18
+ {...(omit
19
+ ? { width, height }
20
+ : { width: width ?? 16, height: height ?? 16 })}
21
+ className={className}
22
+ {...props}
23
+ >
24
+ <path
25
+ fill="currentColor"
26
+ d="M7.998.833c.578 0 1.094.185 1.65.498.54.303 1.16.75 1.938 1.313l1.006.727c.624.451 1.123.812 1.5 1.146.388.344.678.688.863 1.12.184.433.228.877.204 1.388-.024.494-.116 1.09-.23 1.833l-.21 1.368c-.162 1.055-.291 1.896-.481 2.551-.197.678-.473 1.215-.967 1.626-.492.41-1.079.592-1.795.679-.697.085-1.575.085-2.685.085H7.206c-1.11 0-1.989 0-2.685-.085-.716-.087-1.303-.27-1.795-.679-.494-.41-.77-.948-.967-1.626-.19-.655-.319-1.496-.481-2.551l-.21-1.368C.954 8.115.862 7.52.838 7.025c-.024-.511.02-.955.204-1.388.185-.432.475-.776.864-1.12.376-.334.875-.695 1.499-1.146l1.007-.727c.777-.563 1.396-1.01 1.936-1.313.557-.313 1.073-.498 1.65-.498Zm0 1c-.344 0-.688.105-1.16.37-.485.272-1.057.684-1.866 1.269l-.96.694c-.65.47-1.108.802-1.442 1.099-.327.29-.502.518-.608.764-.104.246-.145.524-.125.948.021.435.104.98.223 1.756l.201 1.306c.169 1.099.29 1.875.46 2.46.164.57.36.9.645 1.136.286.238.658.38 1.275.455.63.076 1.448.077 2.599.077h1.517c1.151 0 1.97 0 2.599-.077.617-.075.989-.217 1.275-.455.285-.237.482-.566.647-1.136.17-.585.289-1.361.458-2.46l.201-1.306c.12-.776.202-1.32.223-1.756.02-.424-.02-.702-.125-.948-.106-.246-.281-.475-.608-.764-.334-.297-.792-.629-1.442-1.099l-.96-.694c-.809-.585-1.381-.997-1.865-1.269-.473-.265-.817-.37-1.162-.37ZM9.332 11.5a.5.5 0 0 1 0 1H6.665a.5.5 0 0 1 0-1h2.667Z"
27
+ />
28
+ </svg>
29
+ );
30
+ };
31
+
32
+ export default HomeSVG;
@@ -0,0 +1,157 @@
1
+ // =============================================================
2
+ // IconFactory — public icon surface for sdaia-ui
3
+ // =============================================================
4
+ // AUTO-GENERATED by scripts/build-icon-factory.mjs — do not edit
5
+ // by hand. Run `npm --workspace sdaia-ui run icons:build` after
6
+ // adding or renaming files in this folder.
7
+ //
8
+ // Consumers:
9
+ // import { ChevronDownIcon, UserIcon } from 'sdaia-ui/icons';
10
+ //
11
+ // Every icon accepts SVGProps<SVGSVGElement>, renders at the
12
+ // parent's size (width/height 100%), and uses `fill="currentColor"`
13
+ // so it responds to `size-icon-*` and `text-*` design tokens.
14
+ // =============================================================
15
+
16
+ export { AIIcon } from './AIIcon';
17
+ export { AaIcon } from './AaIcon';
18
+ export { AlertCircle02Icon } from './AlertCircle02Icon';
19
+ export { AlertCircleIcon } from './AlertCircleIcon';
20
+ export { default as AlertCircleSVG } from './AlertCircleSVG';
21
+ export { AlertCircleWarningIcon } from './AlertCircleWarningIcon';
22
+ export { AlertTriangleIcon } from './AlertTriangleIcon';
23
+ export { AlignCenterIcon } from './AlignCenterIcon';
24
+ export { AlignLeftIcon } from './AlignLeftIcon';
25
+ export { AlignRightIcon } from './AlignRightIcon';
26
+ export { ArrowDownIcon } from './ArrowDownIcon';
27
+ export { ArrowDownLeft01Icon } from './ArrowDownLeft01Icon';
28
+ export { default as ArrowDownSVG } from './ArrowDownSVG';
29
+ export { ArrowIcon } from './ArrowIcon';
30
+ export { ArrowLeft01Icon } from './ArrowLeft01Icon';
31
+ export { default as ArrowLeft02SVG } from './ArrowLeft02SVG';
32
+ export { ArrowLeftIcon } from './ArrowLeftIcon';
33
+ export { ArrowRight01Icon } from './ArrowRight01Icon';
34
+ export { default as ArrowRight01SVG } from './ArrowRight01SVG';
35
+ export { ArrowRightIcon } from './ArrowRightIcon';
36
+ export { ArrowUpIcon } from './ArrowUpIcon';
37
+ export { ArrowUpRight01Icon } from './ArrowUpRight01Icon';
38
+ export { default as ArrowUpSVG } from './ArrowUpSVG';
39
+ export { AtIcon } from './AtIcon';
40
+ export { BeakBottom } from './BeakBottom';
41
+ export { BeakDown } from './BeakDown';
42
+ export { BeakLeft } from './BeakLeft';
43
+ export { BeakRight } from './BeakRight';
44
+ export { BeakTop } from './BeakTop';
45
+ export { BeakUp } from './BeakUp';
46
+ export { BellCircleIcon } from './BellCircleIcon';
47
+ export { BellIcon } from './BellIcon';
48
+ export { BoldIcon } from './BoldIcon';
49
+ export { CalendarIcon } from './CalendarIcon';
50
+ export { ChartsIcon } from './ChartsIcon';
51
+ export { CheckCircleIcon } from './CheckCircleIcon';
52
+ export { ChevronDownIcon } from './ChevronDownIcon';
53
+ export { ChevronDownSmIcon } from './ChevronDownSmIcon';
54
+ export { ChevronLeftIcon } from './ChevronLeftIcon';
55
+ export { ChevronRightIcon } from './ChevronRightIcon';
56
+ export { ClearIcon } from './ClearIcon';
57
+ export { ClockIcon } from './ClockIcon';
58
+ export { CloseIcon } from './CloseIcon';
59
+ export { CloudUploadIcon } from './CloudUploadIcon';
60
+ export { CodeSnippetChevronDownIcon } from './CodeSnippetChevronDownIcon';
61
+ export { CodeSnippetCopyIcon } from './CodeSnippetCopyIcon';
62
+ export { CodeSnippetStarIcon } from './CodeSnippetStarIcon';
63
+ export { ColorSquareIcon } from './ColorSquareIcon';
64
+ export { ComponentsIcon } from './ComponentsIcon';
65
+ export { default as DGALogoSVG } from './DGALogoSVG';
66
+ export { DeleteIcon } from './DeleteIcon';
67
+ export { DownloadIcon } from './DownloadIcon';
68
+ export { DragHandleVerticalIcon } from './DragHandleVerticalIcon';
69
+ export { FeedbackEmojiDislikeIcon } from './FeedbackEmojiDislikeIcon';
70
+ export { FeedbackEmojiLikeIcon } from './FeedbackEmojiLikeIcon';
71
+ export { FeedbackEmojiNeutralIcon } from './FeedbackEmojiNeutralIcon';
72
+ export { FeedbackThumbDislikeFilledIcon } from './FeedbackThumbDislikeFilledIcon';
73
+ export { FeedbackThumbDislikeIcon } from './FeedbackThumbDislikeIcon';
74
+ export { FeedbackThumbLikeFilledIcon } from './FeedbackThumbLikeFilledIcon';
75
+ export { FeedbackThumbLikeIcon } from './FeedbackThumbLikeIcon';
76
+ export { FileUploadItemCloseIcon } from './FileUploadItemCloseIcon';
77
+ export { FileUploadItemEmptyFileIcon } from './FileUploadItemEmptyFileIcon';
78
+ export { FileUploadItemPdfIcon } from './FileUploadItemPdfIcon';
79
+ export { FilterFunnelIcon } from './FilterFunnelIcon';
80
+ export { FilterIcon } from './FilterIcon';
81
+ export { FitIcon } from './FitIcon';
82
+ export { FolderFilledIcon } from './FolderFilledIcon';
83
+ export { FolderIcon } from './FolderIcon';
84
+ export { FoundationsIcon } from './FoundationsIcon';
85
+ export { FullscreenExitIcon } from './FullscreenExitIcon';
86
+ export { FullscreenIcon } from './FullscreenIcon';
87
+ export { GoBackward10Icon } from './GoBackward10Icon';
88
+ export { GoForward10Icon } from './GoForward10Icon';
89
+ export { GridSquaresIcon } from './GridSquaresIcon';
90
+ export { HamburgerIcon } from './HamburgerIcon';
91
+ export { HelpCircleIcon } from './HelpCircleIcon';
92
+ export { HomeIcon } from './HomeIcon';
93
+ export { default as HomeSVG } from './HomeSVG';
94
+ export { default as Image01SVG } from './Image01SVG';
95
+ export { default as ImagePlaceholderIcon } from './Image01SVG';
96
+ export { ImageIcon } from './ImageIcon';
97
+ export { InfoCircleIcon } from './InfoCircleIcon';
98
+ export { default as InfoCircleSVG } from './InfoCircleSVG';
99
+ export { InfoIcon } from './InfoIcon';
100
+ export { ItalicIcon } from './ItalicIcon';
101
+ export { LearnMoreArrowIcon } from './LearnMoreArrowIcon';
102
+ export { default as LinkCircleSVG } from './LinkCircleSVG';
103
+ export { LinkIcon } from './LinkIcon';
104
+ export { ListLinesIcon } from './ListLinesIcon';
105
+ export { default as LockCircleSVG } from './LockCircleSVG';
106
+ export { LockIcon } from './LockIcon';
107
+ export { default as Logout02Icon } from './Logout02Icon';
108
+ export { MicrophoneIcon } from './MicrophoneIcon';
109
+ export { MinusIcon } from './MinusIcon';
110
+ export { MoreHorizontalIcon } from './MoreHorizontalIcon';
111
+ export { MoreVerticalIcon } from './MoreVerticalIcon';
112
+ export { NextIcon } from './NextIcon';
113
+ export { default as PDFSvg } from './PDFSvg';
114
+ export { default as PdfIcon } from './PDFSvg';
115
+ export { PatternsIcon } from './PatternsIcon';
116
+ export { PauseIcon } from './PauseIcon';
117
+ export { PencilIcon } from './PencilIcon';
118
+ export { PlayButtonCardIcon } from './PlayButtonCardIcon';
119
+ export { PlayCenterIcon } from './PlayCenterIcon';
120
+ export { PlayIcon } from './PlayIcon';
121
+ export { PlayIconSolid } from './PlayIconSolid';
122
+ export { PlayIconStroke } from './PlayIconStroke';
123
+ export { PlayIconTwotone } from './PlayIconTwotone';
124
+ export { PlayVideoIcon } from './PlayVideoIcon';
125
+ export { PlusCircleIcon } from './PlusCircleIcon';
126
+ export { PlusIcon } from './PlusIcon';
127
+ export { PreviousIcon } from './PreviousIcon';
128
+ export { PrintIcon } from './PrintIcon';
129
+ export { QuestionMarkGrayBgIcon } from './QuestionMarkGrayBgIcon';
130
+ export { QuestionMarkIcon } from './QuestionMarkIcon';
131
+ export { RedoIcon } from './RedoIcon';
132
+ export { default as SaudiFlagSVG } from './SaudiFlagSVG';
133
+ export { SdaiaNavLogo } from './SdaiaNavLogo';
134
+ export { SearchIcon } from './SearchIcon';
135
+ export { SettingsIcon } from './SettingsIcon';
136
+ export { ShareIcon } from './ShareIcon';
137
+ export { SidebarCollapseIcon } from './SidebarCollapseIcon';
138
+ export { SmileIcon } from './SmileIcon';
139
+ export { SortIcon } from './SortIcon';
140
+ export { StarIcon } from './StarIcon';
141
+ export { StatusBadgeIcon } from './StatusBadgeIcon';
142
+ export { TextTIcon } from './TextTIcon';
143
+ export { Tick02Icon } from './Tick02Icon';
144
+ export { TickIcon } from './TickIcon';
145
+ export { TrashIcon } from './TrashIcon';
146
+ export { UnderlineIcon } from './UnderlineIcon';
147
+ export { UndoIcon } from './UndoIcon';
148
+ export { UploadArrowIcon } from './UploadArrowIcon';
149
+ export { UserIcon } from './UserIcon';
150
+ export { VolumeHighIcon } from './VolumeHighIcon';
151
+ export { VolumeMuteIcon } from './VolumeMuteIcon';
152
+ export { XCircleIcon } from './XCircleIcon';
153
+ export { XIcon } from './XIcon';
154
+ export { default as XIconSVG } from './XIconSVG';
155
+ export { XSmallIcon } from './XSmallIcon';
156
+ export { default as XSvg } from './XSvg';
157
+ export { ZoomInIcon } from './ZoomInIcon';
@@ -0,0 +1,18 @@
1
+ import * as React from "react"
2
+ const Image01SVG = (props: React.SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width={32}
6
+ height={32}
7
+ fill="none"
8
+ {...props}
9
+ >
10
+ <path
11
+ fill="#9DA4AE"
12
+ fillRule="evenodd"
13
+ d="M16.076 2.332c2.921 0 5.216 0 7.007.241 1.835.247 3.291.763 4.436 1.907 1.144 1.145 1.66 2.6 1.907 4.436.24 1.791.241 4.086.241 7.007v.152c0 2.921 0 5.216-.241 7.007-.247 1.835-.763 3.291-1.907 4.436-1.145 1.144-2.6 1.66-4.436 1.907-1.791.24-4.086.241-7.007.241h-.152c-2.921 0-5.216 0-7.007-.241-1.835-.247-3.291-.763-4.436-1.907-1.144-1.145-1.66-2.6-1.907-4.436-.24-1.791-.241-4.086-.241-7.007v-.152c0-2.921 0-5.216.241-7.007.247-1.835.763-3.291 1.907-4.436 1.145-1.144 2.6-1.66 4.436-1.907 1.791-.24 4.086-.241 7.007-.241h.152Zm5.955 14.676c-1.825.086-3.553.782-5.233 1.908-2.96 1.984-5.589 5.164-8.172 8.29l-.108.128c.209.04.43.077.666.108 1.642.221 3.802.224 6.816.224s5.174-.003 6.816-.224c1.614-.217 2.578-.628 3.289-1.338.71-.711 1.121-1.675 1.338-3.289.151-1.124.2-2.49.215-4.208-2.075-1.239-3.936-1.679-5.627-1.6ZM16 4.332c-3.014 0-5.174.003-6.816.224-1.614.217-2.578.628-3.288 1.339-.711.71-1.122 1.674-1.34 3.288-.22 1.642-.223 3.802-.223 6.816s.003 5.174.224 6.816c.217 1.614.628 2.578 1.339 3.288.188.189.395.355.626.503l.539-.647c2.56-3.102 5.4-6.543 8.623-8.704 1.886-1.265 3.963-2.136 6.254-2.244 1.832-.086 3.738.321 5.728 1.322l.001-.334c0-3.014-.003-5.174-.224-6.816-.217-1.614-.628-2.578-1.338-3.288-.711-.711-1.675-1.122-3.289-1.34-1.642-.22-3.802-.223-6.816-.223Zm-6 2.667a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
14
+ clipRule="evenodd"
15
+ />
16
+ </svg>
17
+ )
18
+ export default Image01SVG
@@ -0,0 +1,31 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ── 24×24 toolbar icons ────────────────────────────────────── */
4
+
5
+ /**
6
+ * Undo icon (undo-03) — 24×24 px.
7
+ * Figma: node inside Rich Text Editor 6259:88649
8
+ */
9
+
10
+ export function ImageIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
11
+ return (
12
+ <svg
13
+ viewBox="0 0 24 24"
14
+ fill="none"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ aria-hidden="true"
17
+ className={className}
18
+ {...props}
19
+ >
20
+ <path
21
+ d="M12.0576 1.75C14.2479 1.74999 15.9683 1.75012 17.3115 1.93066C18.6882 2.11575 19.7805 2.50313 20.6387 3.36133C21.4969 4.21953 21.8842 5.31182 22.0693 6.68848C22.2499 8.03174 22.25 9.75212 22.25 11.9424V12.0576C22.25 14.2479 22.2499 15.9683 22.0693 17.3115C21.8842 18.6882 21.4969 19.7805 20.6387 20.6387C19.7805 21.4969 18.6882 21.8842 17.3115 22.0693C15.9683 22.2499 14.2479 22.25 12.0576 22.25H11.9424C9.75212 22.25 8.03174 22.2499 6.68848 22.0693C5.31182 21.8842 4.21953 21.4969 3.36133 20.6387C2.50313 19.7805 2.11575 18.6882 1.93066 17.3115C1.75012 15.9683 1.74999 14.2479 1.75 12.0576V11.9424C1.74999 9.75212 1.75012 8.03174 1.93066 6.68848C2.11575 5.31182 2.50313 4.21953 3.36133 3.36133C4.21953 2.50313 5.31182 2.11575 6.68848 1.93066C8.03174 1.75012 9.75213 1.74999 11.9424 1.75H12.0576ZM16.5234 12.7568C15.1543 12.8212 13.8585 13.3428 12.5986 14.1875C10.3792 15.6757 8.4073 18.0615 6.46973 20.4053C6.44338 20.4371 6.41599 20.4681 6.38965 20.5C6.5461 20.5301 6.71151 20.5593 6.8877 20.583C8.1196 20.7486 9.73963 20.75 12 20.75C14.2604 20.75 15.8804 20.7486 17.1123 20.583C18.3225 20.4203 19.0451 20.1111 19.5781 19.5781C20.1111 19.0451 20.4203 18.3225 20.583 17.1123C20.6964 16.2691 20.7295 15.2438 20.7412 13.9561C19.1853 13.0274 17.7912 12.6972 16.5234 12.7568ZM12 3.25C9.73963 3.25 8.1196 3.25137 6.8877 3.41699C5.67747 3.57972 4.9549 3.88885 4.42188 4.42188C3.88885 4.9549 3.57972 5.67747 3.41699 6.8877C3.25137 8.1196 3.25 9.73963 3.25 12C3.25 14.2604 3.25137 15.8804 3.41699 17.1123C3.57972 18.3225 3.88885 19.0451 4.42188 19.5781C4.56311 19.7194 4.71817 19.8439 4.8916 19.9551C5.02456 19.7944 5.15992 19.6333 5.29492 19.4697C7.21504 17.1434 9.3453 14.5634 11.7627 12.9424C13.1776 11.9937 14.7351 11.3396 16.4531 11.2588C17.8273 11.1942 19.2568 11.4987 20.749 12.249C20.749 12.1669 20.75 12.0839 20.75 12C20.75 9.73963 20.7486 8.1196 20.583 6.8877C20.4203 5.67747 20.1111 4.9549 19.5781 4.42188C19.0451 3.88885 18.3225 3.57972 17.1123 3.41699C15.8804 3.25137 14.2604 3.25 12 3.25ZM7.5 5.25C8.74264 5.25 9.75 6.25736 9.75 7.5C9.75 8.74264 8.74264 9.75 7.5 9.75C6.25736 9.75 5.25 8.74264 5.25 7.5C5.25 6.25736 6.25736 5.25 7.5 5.25ZM7.5 6.75C7.08579 6.75 6.75 7.08579 6.75 7.5C6.75 7.91421 7.08579 8.25 7.5 8.25C7.91421 8.25 8.25 7.91421 8.25 7.5C8.25 7.08579 7.91421 6.75 7.5 6.75Z"
22
+ fill="currentColor"
23
+ />
24
+ </svg>
25
+ );
26
+ }
27
+
28
+ /**
29
+ * AI magic / sparkle icon (ai-magic) — 24×24 px.
30
+ * Figma: node inside Rich Text Editor 6259:88649
31
+ */