@postal-music/icons 0.1.0

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 (363) hide show
  1. package/dist/index.js +4909 -0
  2. package/dist/index.js.map +1 -0
  3. package/dist/index.mjs +4744 -0
  4. package/dist/index.mjs.map +1 -0
  5. package/dist/index.native.js +4155 -0
  6. package/dist/index.native.js.map +1 -0
  7. package/dist/index.native.mjs +3959 -0
  8. package/dist/index.native.mjs.map +1 -0
  9. package/package.json +46 -0
  10. package/src/icons/_icon-props.ts +7 -0
  11. package/src/icons/actions/CheckIcon.native.tsx +27 -0
  12. package/src/icons/actions/CheckIcon.web.tsx +31 -0
  13. package/src/icons/actions/Copy02Icon.native.tsx +23 -0
  14. package/src/icons/actions/Copy02Icon.web.tsx +29 -0
  15. package/src/icons/actions/Copy06Icon.native.tsx +27 -0
  16. package/src/icons/actions/Copy06Icon.web.tsx +40 -0
  17. package/src/icons/actions/CopyIcon.native.tsx +23 -0
  18. package/src/icons/actions/CopyIcon.web.tsx +22 -0
  19. package/src/icons/actions/Expand01Icon.native.tsx +27 -0
  20. package/src/icons/actions/Expand01Icon.web.tsx +33 -0
  21. package/src/icons/actions/LogoutIcon.native.tsx +27 -0
  22. package/src/icons/actions/LogoutIcon.web.tsx +31 -0
  23. package/src/icons/actions/MinCircleIcon.native.tsx +29 -0
  24. package/src/icons/actions/MinCircleIcon.web.tsx +34 -0
  25. package/src/icons/actions/MinimiseIcon.native.tsx +27 -0
  26. package/src/icons/actions/MinimiseIcon.web.tsx +33 -0
  27. package/src/icons/actions/MinusIcon.native.tsx +22 -0
  28. package/src/icons/actions/MinusIcon.web.tsx +26 -0
  29. package/src/icons/actions/MoreOptionsIcon.native.tsx +49 -0
  30. package/src/icons/actions/MoreOptionsIcon.web.tsx +64 -0
  31. package/src/icons/actions/MoveIcon.native.tsx +32 -0
  32. package/src/icons/actions/MoveIcon.web.tsx +45 -0
  33. package/src/icons/actions/PencilIcon.native.tsx +23 -0
  34. package/src/icons/actions/PencilIcon.web.tsx +29 -0
  35. package/src/icons/actions/PlusCircleIcon.native.tsx +27 -0
  36. package/src/icons/actions/PlusCircleIcon.web.tsx +31 -0
  37. package/src/icons/actions/PlusIcon.native.tsx +23 -0
  38. package/src/icons/actions/PlusIcon.web.tsx +22 -0
  39. package/src/icons/actions/RefreshIcon.native.tsx +25 -0
  40. package/src/icons/actions/RefreshIcon.web.tsx +29 -0
  41. package/src/icons/actions/ResetIcon.native.tsx +25 -0
  42. package/src/icons/actions/ResetIcon.web.tsx +36 -0
  43. package/src/icons/actions/SettingsIcon.native.tsx +29 -0
  44. package/src/icons/actions/SettingsIcon.web.tsx +33 -0
  45. package/src/icons/actions/SlidersIcon.native.tsx +25 -0
  46. package/src/icons/actions/SlidersIcon.web.tsx +29 -0
  47. package/src/icons/actions/SmallMagnifyIcon.native.tsx +27 -0
  48. package/src/icons/actions/SmallMagnifyIcon.web.tsx +34 -0
  49. package/src/icons/actions/Trash02Icon.native.tsx +25 -0
  50. package/src/icons/actions/Trash02Icon.web.tsx +33 -0
  51. package/src/icons/actions/TrashIcon.native.tsx +22 -0
  52. package/src/icons/actions/TrashIcon.web.tsx +22 -0
  53. package/src/icons/actions/XIcon.native.tsx +23 -0
  54. package/src/icons/actions/XIcon.web.tsx +21 -0
  55. package/src/icons/actions/index.ts +22 -0
  56. package/src/icons/alerts/AlertTriangleIcon.native.tsx +32 -0
  57. package/src/icons/alerts/AlertTriangleIcon.web.tsx +49 -0
  58. package/src/icons/alerts/BellIcon.native.tsx +23 -0
  59. package/src/icons/alerts/BellIcon.web.tsx +27 -0
  60. package/src/icons/alerts/CheckCircleIcon.native.tsx +28 -0
  61. package/src/icons/alerts/CheckCircleIcon.web.tsx +44 -0
  62. package/src/icons/alerts/InfoCircleIcon.native.tsx +32 -0
  63. package/src/icons/alerts/InfoCircleIcon.web.tsx +40 -0
  64. package/src/icons/alerts/InfoIcon.native.tsx +30 -0
  65. package/src/icons/alerts/InfoIcon.web.tsx +34 -0
  66. package/src/icons/alerts/InfoSquareIcon.native.tsx +25 -0
  67. package/src/icons/alerts/InfoSquareIcon.web.tsx +31 -0
  68. package/src/icons/alerts/SlashCircleIcon.native.tsx +36 -0
  69. package/src/icons/alerts/SlashCircleIcon.web.tsx +47 -0
  70. package/src/icons/alerts/XCircleIcon.native.tsx +28 -0
  71. package/src/icons/alerts/XCircleIcon.web.tsx +50 -0
  72. package/src/icons/alerts/index.ts +8 -0
  73. package/src/icons/arrows/ArrowDownIcon.native.tsx +29 -0
  74. package/src/icons/arrows/ArrowDownIcon.web.tsx +31 -0
  75. package/src/icons/arrows/ArrowLeftIcon.native.tsx +32 -0
  76. package/src/icons/arrows/ArrowLeftIcon.web.tsx +31 -0
  77. package/src/icons/arrows/ArrowRightIcon.native.tsx +26 -0
  78. package/src/icons/arrows/ArrowRightIcon.web.tsx +31 -0
  79. package/src/icons/arrows/ArrowUp01Icon.native.tsx +30 -0
  80. package/src/icons/arrows/ArrowUp01Icon.web.tsx +53 -0
  81. package/src/icons/arrows/ArrowUpIcon.native.tsx +32 -0
  82. package/src/icons/arrows/ArrowUpIcon.web.tsx +29 -0
  83. package/src/icons/arrows/ChevronLeftIcon.native.tsx +32 -0
  84. package/src/icons/arrows/ChevronLeftIcon.web.tsx +31 -0
  85. package/src/icons/arrows/ChevronSelectorIcon.native.tsx +32 -0
  86. package/src/icons/arrows/ChevronSelectorIcon.web.tsx +33 -0
  87. package/src/icons/arrows/NarrowUpRightIcon.native.tsx +28 -0
  88. package/src/icons/arrows/NarrowUpRightIcon.web.tsx +29 -0
  89. package/src/icons/arrows/SwitchHorizontal02Icon.native.tsx +28 -0
  90. package/src/icons/arrows/SwitchHorizontal02Icon.web.tsx +39 -0
  91. package/src/icons/arrows/UTurnIcon.native.tsx +28 -0
  92. package/src/icons/arrows/UTurnIcon.web.tsx +32 -0
  93. package/src/icons/arrows/index.ts +10 -0
  94. package/src/icons/brand/InstagramWhiteIcon.native.tsx +39 -0
  95. package/src/icons/brand/InstagramWhiteIcon.web.tsx +79 -0
  96. package/src/icons/brand/PostalIcon.native.tsx +26 -0
  97. package/src/icons/brand/PostalIcon.web.tsx +29 -0
  98. package/src/icons/brand/index.ts +2 -0
  99. package/src/icons/charts/BarChart01Icon.native.tsx +25 -0
  100. package/src/icons/charts/BarChart01Icon.web.tsx +34 -0
  101. package/src/icons/charts/BarChart10Icon.native.tsx +23 -0
  102. package/src/icons/charts/BarChart10Icon.web.tsx +31 -0
  103. package/src/icons/charts/LineChart03UpIcon.native.tsx +23 -0
  104. package/src/icons/charts/LineChart03UpIcon.web.tsx +31 -0
  105. package/src/icons/charts/index.ts +3 -0
  106. package/src/icons/communication/AnnotationInfoIcon.native.tsx +30 -0
  107. package/src/icons/communication/AnnotationInfoIcon.web.tsx +38 -0
  108. package/src/icons/communication/ChatBubbleDotIcon.native.tsx +31 -0
  109. package/src/icons/communication/ChatBubbleDotIcon.web.tsx +31 -0
  110. package/src/icons/communication/ChatBubbleIcon.native.tsx +30 -0
  111. package/src/icons/communication/ChatBubbleIcon.web.tsx +37 -0
  112. package/src/icons/communication/MailIcon.native.tsx +36 -0
  113. package/src/icons/communication/MailIcon.web.tsx +37 -0
  114. package/src/icons/communication/MessageSquareTextIcon.native.tsx +30 -0
  115. package/src/icons/communication/MessageSquareTextIcon.web.tsx +41 -0
  116. package/src/icons/communication/MessageTextCircle01Icon.native.tsx +29 -0
  117. package/src/icons/communication/MessageTextCircle01Icon.web.tsx +32 -0
  118. package/src/icons/communication/NotificationTextIcon.native.tsx +21 -0
  119. package/src/icons/communication/NotificationTextIcon.web.tsx +24 -0
  120. package/src/icons/communication/SendIcon.native.tsx +28 -0
  121. package/src/icons/communication/SendIcon.web.tsx +33 -0
  122. package/src/icons/communication/index.ts +8 -0
  123. package/src/icons/files/CameraIcon.native.tsx +30 -0
  124. package/src/icons/files/CameraIcon.web.tsx +31 -0
  125. package/src/icons/files/Download02Icon.native.tsx +30 -0
  126. package/src/icons/files/Download02Icon.web.tsx +31 -0
  127. package/src/icons/files/Download03Icon.native.tsx +32 -0
  128. package/src/icons/files/Download03Icon.web.tsx +33 -0
  129. package/src/icons/files/Download04Icon.native.tsx +34 -0
  130. package/src/icons/files/Download04Icon.web.tsx +58 -0
  131. package/src/icons/files/DownloadCircleIcon.native.tsx +30 -0
  132. package/src/icons/files/DownloadCircleIcon.web.tsx +39 -0
  133. package/src/icons/files/DownloadIcon.native.tsx +28 -0
  134. package/src/icons/files/DownloadIcon.web.tsx +30 -0
  135. package/src/icons/files/File02Icon.native.tsx +28 -0
  136. package/src/icons/files/File02Icon.web.tsx +30 -0
  137. package/src/icons/files/FileDownload02Icon.native.tsx +30 -0
  138. package/src/icons/files/FileDownload02Icon.web.tsx +31 -0
  139. package/src/icons/files/FolderGradientIcon.native.tsx +43 -0
  140. package/src/icons/files/FolderGradientIcon.web.tsx +47 -0
  141. package/src/icons/files/FolderIcon.native.tsx +28 -0
  142. package/src/icons/files/FolderIcon.web.tsx +27 -0
  143. package/src/icons/files/FolderPlusIcon.native.tsx +34 -0
  144. package/src/icons/files/FolderPlusIcon.web.tsx +89 -0
  145. package/src/icons/files/Upload01Icon.native.tsx +32 -0
  146. package/src/icons/files/Upload01Icon.web.tsx +84 -0
  147. package/src/icons/files/UploadCloudIcon.native.tsx +27 -0
  148. package/src/icons/files/UploadCloudIcon.web.tsx +28 -0
  149. package/src/icons/files/UploadIcon.native.tsx +29 -0
  150. package/src/icons/files/UploadIcon.web.tsx +34 -0
  151. package/src/icons/files/index.ts +14 -0
  152. package/src/icons/finance/BankNote03Icon.native.tsx +35 -0
  153. package/src/icons/finance/BankNote03Icon.web.tsx +65 -0
  154. package/src/icons/finance/CoinsStacked03Icon.native.tsx +37 -0
  155. package/src/icons/finance/CoinsStacked03Icon.web.tsx +71 -0
  156. package/src/icons/finance/CreditCardIcon.native.tsx +22 -0
  157. package/src/icons/finance/CreditCardIcon.web.tsx +27 -0
  158. package/src/icons/finance/index.ts +3 -0
  159. package/src/icons/general/ActivityIcon.native.tsx +28 -0
  160. package/src/icons/general/ActivityIcon.web.tsx +38 -0
  161. package/src/icons/general/BookIcon.native.tsx +27 -0
  162. package/src/icons/general/BookIcon.web.tsx +26 -0
  163. package/src/icons/general/BookmarkIcon.native.tsx +32 -0
  164. package/src/icons/general/BookmarkIcon.web.tsx +36 -0
  165. package/src/icons/general/CollaborativeIcon.native.tsx +32 -0
  166. package/src/icons/general/CollaborativeIcon.web.tsx +31 -0
  167. package/src/icons/general/DataIcon.native.tsx +35 -0
  168. package/src/icons/general/DataIcon.web.tsx +51 -0
  169. package/src/icons/general/Dataflow03Icon.native.tsx +35 -0
  170. package/src/icons/general/Dataflow03Icon.web.tsx +53 -0
  171. package/src/icons/general/Datapoints01Icon.native.tsx +44 -0
  172. package/src/icons/general/Datapoints01Icon.web.tsx +44 -0
  173. package/src/icons/general/DropBoxIcon.native.tsx +42 -0
  174. package/src/icons/general/DropBoxIcon.web.tsx +55 -0
  175. package/src/icons/general/FaceSmileIcon.native.tsx +39 -0
  176. package/src/icons/general/FaceSmileIcon.web.tsx +65 -0
  177. package/src/icons/general/Flag01Icon.native.tsx +30 -0
  178. package/src/icons/general/Flag01Icon.web.tsx +32 -0
  179. package/src/icons/general/Globe02Icon.native.tsx +37 -0
  180. package/src/icons/general/Globe02Icon.web.tsx +38 -0
  181. package/src/icons/general/Globe05Icon.native.tsx +32 -0
  182. package/src/icons/general/Globe05Icon.web.tsx +36 -0
  183. package/src/icons/general/GlobeIcon.native.tsx +47 -0
  184. package/src/icons/general/GlobeIcon.web.tsx +48 -0
  185. package/src/icons/general/Hash02Icon.native.tsx +25 -0
  186. package/src/icons/general/Hash02Icon.web.tsx +24 -0
  187. package/src/icons/general/HeartIcon.native.tsx +35 -0
  188. package/src/icons/general/HeartIcon.web.tsx +38 -0
  189. package/src/icons/general/HelpIcon.native.tsx +35 -0
  190. package/src/icons/general/HelpIcon.web.tsx +33 -0
  191. package/src/icons/general/Image01Icon.native.tsx +24 -0
  192. package/src/icons/general/Image01Icon.web.tsx +26 -0
  193. package/src/icons/general/Image03Icon.native.tsx +40 -0
  194. package/src/icons/general/Image03Icon.web.tsx +51 -0
  195. package/src/icons/general/ImageIcon.native.tsx +34 -0
  196. package/src/icons/general/ImageIcon.web.tsx +39 -0
  197. package/src/icons/general/LandingCollaborativeIcon.native.tsx +27 -0
  198. package/src/icons/general/LandingCollaborativeIcon.web.tsx +26 -0
  199. package/src/icons/general/LandingControlsIcon.native.tsx +27 -0
  200. package/src/icons/general/LandingControlsIcon.web.tsx +26 -0
  201. package/src/icons/general/LandingMusicIcon.native.tsx +32 -0
  202. package/src/icons/general/LandingMusicIcon.web.tsx +31 -0
  203. package/src/icons/general/LandingShareIcon.native.tsx +27 -0
  204. package/src/icons/general/LandingShareIcon.web.tsx +26 -0
  205. package/src/icons/general/LandingUploadIcon.native.tsx +27 -0
  206. package/src/icons/general/LandingUploadIcon.web.tsx +26 -0
  207. package/src/icons/general/LayersThree01Icon.native.tsx +28 -0
  208. package/src/icons/general/LayersThree01Icon.web.tsx +31 -0
  209. package/src/icons/general/LyricsIcon.native.tsx +40 -0
  210. package/src/icons/general/LyricsIcon.web.tsx +41 -0
  211. package/src/icons/general/MoonIcon.native.tsx +34 -0
  212. package/src/icons/general/MoonIcon.web.tsx +33 -0
  213. package/src/icons/general/MusicNoteIcon.native.tsx +32 -0
  214. package/src/icons/general/MusicNoteIcon.web.tsx +35 -0
  215. package/src/icons/general/PinIcon.native.tsx +37 -0
  216. package/src/icons/general/PinIcon.web.tsx +49 -0
  217. package/src/icons/general/QuestionCircleIcon.native.tsx +34 -0
  218. package/src/icons/general/QuestionCircleIcon.web.tsx +33 -0
  219. package/src/icons/general/Recordering01.native.tsx +28 -0
  220. package/src/icons/general/Recordering01.web.tsx +39 -0
  221. package/src/icons/general/Share01Icon.native.tsx +30 -0
  222. package/src/icons/general/Share01Icon.web.tsx +32 -0
  223. package/src/icons/general/ShareIcon.native.tsx +28 -0
  224. package/src/icons/general/ShareIcon.web.tsx +33 -0
  225. package/src/icons/general/StarIcon.native.tsx +36 -0
  226. package/src/icons/general/StarIcon.web.tsx +30 -0
  227. package/src/icons/general/Stars01Icon.native.tsx +56 -0
  228. package/src/icons/general/Stars01Icon.web.tsx +66 -0
  229. package/src/icons/general/Stars02Icon.native.tsx +40 -0
  230. package/src/icons/general/Stars02Icon.web.tsx +66 -0
  231. package/src/icons/general/Stars04Icon.native.tsx +37 -0
  232. package/src/icons/general/Stars04Icon.web.tsx +39 -0
  233. package/src/icons/general/Stars06Icon.native.tsx +37 -0
  234. package/src/icons/general/Stars06Icon.web.tsx +38 -0
  235. package/src/icons/general/TagsIcon.native.tsx +26 -0
  236. package/src/icons/general/TagsIcon.web.tsx +29 -0
  237. package/src/icons/general/ThumbsDownIcon.native.tsx +28 -0
  238. package/src/icons/general/ThumbsDownIcon.web.tsx +37 -0
  239. package/src/icons/general/Type01Icon.native.tsx +34 -0
  240. package/src/icons/general/Type01Icon.web.tsx +33 -0
  241. package/src/icons/general/index.ts +41 -0
  242. package/src/icons/index.ts +15 -0
  243. package/src/icons/media/10SecondsBackIcon.native.tsx +37 -0
  244. package/src/icons/media/10SecondsBackIcon.web.tsx +41 -0
  245. package/src/icons/media/EqualizerIcon.native.tsx +25 -0
  246. package/src/icons/media/EqualizerIcon.web.tsx +31 -0
  247. package/src/icons/media/HeadPhonesIcon.native.tsx +35 -0
  248. package/src/icons/media/HeadPhonesIcon.web.tsx +39 -0
  249. package/src/icons/media/MediaUploadIcon.native.tsx +39 -0
  250. package/src/icons/media/MediaUploadIcon.web.tsx +43 -0
  251. package/src/icons/media/NextTrackIcon.native.tsx +30 -0
  252. package/src/icons/media/NextTrackIcon.web.tsx +39 -0
  253. package/src/icons/media/PauseIcon.native.tsx +34 -0
  254. package/src/icons/media/PauseIcon.web.tsx +35 -0
  255. package/src/icons/media/PlayIcon.native.tsx +29 -0
  256. package/src/icons/media/PlayIcon.web.tsx +28 -0
  257. package/src/icons/media/PlaySquareIcon.native.tsx +38 -0
  258. package/src/icons/media/PlaySquareIcon.web.tsx +47 -0
  259. package/src/icons/media/PreviousTrackIcon.native.tsx +30 -0
  260. package/src/icons/media/PreviousTrackIcon.web.tsx +40 -0
  261. package/src/icons/media/Repeat01Icon.native.tsx +29 -0
  262. package/src/icons/media/Repeat01Icon.web.tsx +32 -0
  263. package/src/icons/media/Repeat02Icon.native.tsx +28 -0
  264. package/src/icons/media/Repeat02Icon.web.tsx +33 -0
  265. package/src/icons/media/Repeat03Icon.native.tsx +37 -0
  266. package/src/icons/media/Repeat03Icon.web.tsx +41 -0
  267. package/src/icons/media/Shuffle01Icon.native.tsx +34 -0
  268. package/src/icons/media/Shuffle01Icon.web.tsx +74 -0
  269. package/src/icons/media/TenSecondsForwardIcon.native.tsx +33 -0
  270. package/src/icons/media/TenSecondsForwardIcon.web.tsx +37 -0
  271. package/src/icons/media/VideoRecorderIcon.native.tsx +37 -0
  272. package/src/icons/media/VideoRecorderIcon.web.tsx +36 -0
  273. package/src/icons/media/VolumeIcon.native.tsx +26 -0
  274. package/src/icons/media/VolumeIcon.web.tsx +30 -0
  275. package/src/icons/media/VolumeMaxIcon.native.tsx +27 -0
  276. package/src/icons/media/VolumeMaxIcon.web.tsx +36 -0
  277. package/src/icons/media/index.ts +17 -0
  278. package/src/icons/navigation/AlignLeftIcon.native.tsx +21 -0
  279. package/src/icons/navigation/AlignLeftIcon.web.tsx +31 -0
  280. package/src/icons/navigation/DotgridIcon.native.tsx +40 -0
  281. package/src/icons/navigation/DotgridIcon.web.tsx +51 -0
  282. package/src/icons/navigation/FilterIcon.native.tsx +22 -0
  283. package/src/icons/navigation/FilterIcon.web.tsx +26 -0
  284. package/src/icons/navigation/Grid01Icon.native.tsx +42 -0
  285. package/src/icons/navigation/Grid01Icon.web.tsx +52 -0
  286. package/src/icons/navigation/GridIcon.native.tsx +47 -0
  287. package/src/icons/navigation/GridIcon.web.tsx +58 -0
  288. package/src/icons/navigation/HomeIcon.native.tsx +30 -0
  289. package/src/icons/navigation/HomeIcon.web.tsx +54 -0
  290. package/src/icons/navigation/ListIcon.native.tsx +25 -0
  291. package/src/icons/navigation/ListIcon.web.tsx +32 -0
  292. package/src/icons/navigation/MenuIcon.native.tsx +24 -0
  293. package/src/icons/navigation/MenuIcon.web.tsx +29 -0
  294. package/src/icons/navigation/Rows01Icon.native.tsx +29 -0
  295. package/src/icons/navigation/Rows01Icon.web.tsx +37 -0
  296. package/src/icons/navigation/Rows03Icon.native.tsx +27 -0
  297. package/src/icons/navigation/Rows03Icon.web.tsx +36 -0
  298. package/src/icons/navigation/SearchIcon.native.tsx +23 -0
  299. package/src/icons/navigation/SearchIcon.web.tsx +27 -0
  300. package/src/icons/navigation/SidebarMenuIcon.native.tsx +22 -0
  301. package/src/icons/navigation/SidebarMenuIcon.web.tsx +26 -0
  302. package/src/icons/navigation/SortIcon.native.tsx +21 -0
  303. package/src/icons/navigation/SortIcon.web.tsx +32 -0
  304. package/src/icons/navigation/index.ts +13 -0
  305. package/src/icons/security/EyeIcon.native.tsx +29 -0
  306. package/src/icons/security/EyeIcon.web.tsx +39 -0
  307. package/src/icons/security/Lock03Icon.native.tsx +25 -0
  308. package/src/icons/security/Lock03Icon.web.tsx +31 -0
  309. package/src/icons/security/LockIcon.native.tsx +22 -0
  310. package/src/icons/security/LockIcon.web.tsx +26 -0
  311. package/src/icons/security/LockUnlocked03Icon.native.tsx +25 -0
  312. package/src/icons/security/LockUnlocked03Icon.web.tsx +31 -0
  313. package/src/icons/security/PasswordInputIcon.native.tsx +20 -0
  314. package/src/icons/security/PasswordInputIcon.web.tsx +30 -0
  315. package/src/icons/security/index.ts +5 -0
  316. package/src/icons/social/AppleMusicIcon.native.tsx +44 -0
  317. package/src/icons/social/AppleMusicIcon.web.tsx +50 -0
  318. package/src/icons/social/AudiomackIcon.native.tsx +36 -0
  319. package/src/icons/social/AudiomackIcon.web.tsx +45 -0
  320. package/src/icons/social/InstagramShortsIcon.native.tsx +38 -0
  321. package/src/icons/social/InstagramShortsIcon.web.tsx +47 -0
  322. package/src/icons/social/ShazamIcon.native.tsx +33 -0
  323. package/src/icons/social/ShazamIcon.web.tsx +42 -0
  324. package/src/icons/social/SoundCloudIcon.native.tsx +29 -0
  325. package/src/icons/social/SoundCloudIcon.web.tsx +38 -0
  326. package/src/icons/social/SpotifyIcon.native.tsx +31 -0
  327. package/src/icons/social/SpotifyIcon.web.tsx +38 -0
  328. package/src/icons/social/TiktokIcon.native.tsx +38 -0
  329. package/src/icons/social/TiktokIcon.web.tsx +47 -0
  330. package/src/icons/social/YoutubeIcon.native.tsx +26 -0
  331. package/src/icons/social/YoutubeIcon.web.tsx +35 -0
  332. package/src/icons/social/YoutubeReelsIcon.native.tsx +25 -0
  333. package/src/icons/social/YoutubeReelsIcon.web.tsx +34 -0
  334. package/src/icons/social/index.ts +9 -0
  335. package/src/icons/time/CalendarIcon.native.tsx +32 -0
  336. package/src/icons/time/CalendarIcon.web.tsx +35 -0
  337. package/src/icons/time/ClockIcon.native.tsx +30 -0
  338. package/src/icons/time/ClockIcon.web.tsx +49 -0
  339. package/src/icons/time/index.ts +2 -0
  340. package/src/icons/users/AccountIcon.native.tsx +34 -0
  341. package/src/icons/users/AccountIcon.web.tsx +33 -0
  342. package/src/icons/users/UserApproveIcon.native.tsx +27 -0
  343. package/src/icons/users/UserApproveIcon.web.tsx +26 -0
  344. package/src/icons/users/UserIcon.native.tsx +34 -0
  345. package/src/icons/users/UserIcon.web.tsx +33 -0
  346. package/src/icons/users/UserPlusIcon.native.tsx +38 -0
  347. package/src/icons/users/UserPlusIcon.web.tsx +42 -0
  348. package/src/icons/users/UserXIcon.native.tsx +33 -0
  349. package/src/icons/users/UserXIcon.web.tsx +38 -0
  350. package/src/icons/users/Users03Icon.native.tsx +29 -0
  351. package/src/icons/users/Users03Icon.web.tsx +31 -0
  352. package/src/icons/users/UsersIcon.native.tsx +28 -0
  353. package/src/icons/users/UsersIcon.web.tsx +27 -0
  354. package/src/icons/users/UsersPlusIcon.native.tsx +27 -0
  355. package/src/icons/users/UsersPlusIcon.web.tsx +31 -0
  356. package/src/icons/users/index.ts +8 -0
  357. package/src/index.ts +2 -0
  358. package/src/tokens/colors.ts +55 -0
  359. package/src/tokens/index.ts +4 -0
  360. package/src/tokens/radius.ts +16 -0
  361. package/src/tokens/spacing.ts +27 -0
  362. package/src/tokens/typography.ts +42 -0
  363. package/src/utils/cn.ts +3 -0
@@ -0,0 +1,32 @@
1
+ // components/icons/UTurnIcon.tsx
2
+ import * as React from "react";
3
+
4
+ interface UTurnIconProps extends React.SVGProps<SVGSVGElement> {
5
+ size?: number;
6
+ strokeWidth?: number;
7
+ }
8
+
9
+ export const UTurnIcon = React.forwardRef<SVGSVGElement, UTurnIconProps>(
10
+ ({ className, size = 17, strokeWidth, ...props }, ref) => (
11
+ <svg
12
+ ref={ref}
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 17 17"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ className={className}
19
+ {...props}
20
+ >
21
+ <path
22
+ d="M2.83203 4.95833H9.91536C12.2626 4.95833 14.1654 6.86112 14.1654 9.20833C14.1654 11.5555 12.2626 13.4583 9.91536 13.4583H2.83203M2.83203 4.95833L5.66536 2.125M2.83203 4.95833L5.66536 7.79167"
23
+ stroke="currentColor"
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ ),
30
+ );
31
+
32
+ UTurnIcon.displayName = "UTurnIcon";
@@ -0,0 +1,10 @@
1
+ export { default as ArrowDownIcon } from './ArrowDownIcon';
2
+ export { default as ArrowLeftIcon } from './ArrowLeftIcon';
3
+ export { default as ArrowRightIcon } from './ArrowRightIcon';
4
+ export { default as ArrowUpIcon01 } from './ArrowUp01Icon';
5
+ export { default as ArrowUpIcon } from './ArrowUpIcon';
6
+ export { default as ChevronLeftIcon } from './ChevronLeftIcon';
7
+ export { default as ChevronSelectorIcon } from './ChevronSelectorIcon';
8
+ export { default as NarrowUpRightIcon } from './NarrowUpRightIcon';
9
+ export { default as SwitchHorizontal02Icon } from './SwitchHorizontal02Icon';
10
+ export { default as UTurnIcon } from './UTurnIcon';
@@ -0,0 +1,39 @@
1
+ import * as React from "react";
2
+ import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
3
+
4
+ type InstagramWhiteIconProps = {
5
+ size?: number | string;
6
+ strokeWidth?: number;
7
+ };
8
+
9
+ const InstagramWhiteIcon: React.FC<InstagramWhiteIconProps> = ({
10
+ size = 18,
11
+ strokeWidth = 1.5,
12
+ }) => {
13
+ return (
14
+ <Svg
15
+ width={size}
16
+ height={size}
17
+ viewBox="0 0 18 18"
18
+ fill="none"
19
+ >
20
+ <G clipPath="url(#instagram-white-clip)">
21
+ <Path
22
+ d="M13.125 4.875H13.1325M5.25 1.5H12.75C14.8211 1.5 16.5 3.17893 16.5 5.25V12.75C16.5 14.8211 14.8211 16.5 12.75 16.5H5.25C3.17893 16.5 1.5 14.8211 1.5 12.75V5.25C1.5 3.17893 3.17893 1.5 5.25 1.5ZM12 8.5275C12.0926 9.15168 11.9859 9.78916 11.6953 10.3493C11.4047 10.9094 10.9449 11.3636 10.3812 11.6473C9.81758 11.931 9.17884 12.0297 8.55584 11.9294C7.93284 11.8292 7.35732 11.5351 6.91113 11.0889C6.46494 10.6427 6.1708 10.0672 6.07055 9.44416C5.9703 8.82116 6.06905 8.18242 6.35274 7.61878C6.63644 7.05514 7.09064 6.59531 7.65074 6.30468C8.21084 6.01406 8.84832 5.90744 9.4725 6C10.1092 6.09441 10.6986 6.3911 11.1538 6.84623C11.6089 7.30136 11.9056 7.89081 12 8.5275Z"
23
+ stroke="currentColor"
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </G>
29
+ <Defs>
30
+ <ClipPath id="instagram-white-clip">
31
+ <Rect width="18" height="18" fill="white" />
32
+ </ClipPath>
33
+ </Defs>
34
+ </Svg>
35
+ );
36
+ };
37
+
38
+ export { InstagramWhiteIcon };
39
+ export default InstagramWhiteIcon;
@@ -0,0 +1,79 @@
1
+ import * as React from "react";
2
+
3
+ type InstagramWhiteIconProps = {
4
+ size?: number | string;
5
+ strokeWidth?: number;
6
+ className?: string;
7
+ label?: string; // if omitted, icon will be aria-hidden
8
+ tabIndex?: number;
9
+ onClick?: React.MouseEventHandler<SVGSVGElement>;
10
+ onKeyDown?: React.KeyboardEventHandler<SVGSVGElement>;
11
+ };
12
+
13
+ const InstagramWhiteIcon = React.forwardRef<
14
+ SVGSVGElement,
15
+ InstagramWhiteIconProps
16
+ >(
17
+ (
18
+ {
19
+ size = 18,
20
+ strokeWidth = 1.5,
21
+ className = "",
22
+ label,
23
+ tabIndex,
24
+ onClick,
25
+ onKeyDown,
26
+ ...rest
27
+ },
28
+ ref
29
+ ) => {
30
+ const isInteractive = Boolean(onClick || onKeyDown);
31
+ const computedTabIndex = tabIndex ?? (isInteractive ? 0 : undefined);
32
+
33
+ const classes = [
34
+ "inline-block align-middle",
35
+ isInteractive
36
+ ? "cursor-pointer focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-white/50 rounded"
37
+ : "",
38
+ className,
39
+ ]
40
+ .filter(Boolean)
41
+ .join(" ");
42
+
43
+ return (
44
+ <svg
45
+ ref={ref}
46
+ role="img"
47
+ aria-label={label}
48
+ aria-hidden={label ? undefined : true}
49
+ tabIndex={computedTabIndex}
50
+ onClick={onClick}
51
+ width={size}
52
+ height={size}
53
+ viewBox="0 0 18 18"
54
+ fill="none"
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ className={classes}
57
+ {...rest}
58
+ >
59
+ <g clipPath="url(#clip0_8382_6976)">
60
+ <path
61
+ d="M13.125 4.875H13.1325M5.25 1.5H12.75C14.8211 1.5 16.5 3.17893 16.5 5.25V12.75C16.5 14.8211 14.8211 16.5 12.75 16.5H5.25C3.17893 16.5 1.5 14.8211 1.5 12.75V5.25C1.5 3.17893 3.17893 1.5 5.25 1.5ZM12 8.5275C12.0926 9.15168 11.9859 9.78916 11.6953 10.3493C11.4047 10.9094 10.9449 11.3636 10.3812 11.6473C9.81758 11.931 9.17884 12.0297 8.55584 11.9294C7.93284 11.8292 7.35732 11.5351 6.91113 11.0889C6.46494 10.6427 6.1708 10.0672 6.07055 9.44416C5.9703 8.82116 6.06905 8.18242 6.35274 7.61878C6.63644 7.05514 7.09064 6.59531 7.65074 6.30468C8.21084 6.01406 8.84832 5.90744 9.4725 6C10.1092 6.09441 10.6986 6.3911 11.1538 6.84623C11.6089 7.30136 11.9056 7.89081 12 8.5275Z"
62
+ stroke="currentColor"
63
+ strokeWidth={strokeWidth}
64
+ strokeLinecap="round"
65
+ strokeLinejoin="round"
66
+ />
67
+ </g>
68
+ <defs>
69
+ <clipPath id="clip0_8382_6976">
70
+ <rect width="18" height="18" fill="white" />
71
+ </clipPath>
72
+ </defs>
73
+ </svg>
74
+ );
75
+ }
76
+ );
77
+
78
+ InstagramWhiteIcon.displayName = "InstagramWhiteIcon";
79
+ export default InstagramWhiteIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ import Svg, { Circle } from "react-native-svg";
3
+
4
+ interface PostalIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const PostalIcon: React.FC<PostalIconProps> = ({
10
+ size = 400,
11
+ color = '#000000',
12
+ }) => (
13
+ <Svg
14
+ width={size}
15
+ height={size}
16
+ fill="none"
17
+ viewBox="0 0 236.46 236.32"
18
+ >
19
+ <Circle cx="54.08" cy="182.24" r="54.08" fill={color} />
20
+ <Circle cx="54.22" cy="54.08" r="54.08" fill={color} />
21
+ <Circle cx="182.38" cy="54.08" r="54.08" fill={color} />
22
+ </Svg>
23
+ );
24
+
25
+ export { PostalIcon };
26
+ export default PostalIcon;
@@ -0,0 +1,29 @@
1
+ // Save the embedded PNG from the SVG's base64 to `public/pattern.png` and reference it below.
2
+ import React from "react";
3
+
4
+ interface PatternIconProps extends React.SVGProps<SVGSVGElement> {
5
+ size?: number;
6
+ }
7
+
8
+ const PostalIcon: React.FC<PatternIconProps> = ({
9
+ className,
10
+ size = 400,
11
+ ...props
12
+ }) => (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ className={className}
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ viewBox="0 0 236.46 236.32"
20
+ >
21
+ <circle cx="54.08" cy="182.24" r="54.08" fill="currentColor" />
22
+
23
+ <circle cx="54.22" cy="54.08" r="54.08" fill="currentColor" />
24
+
25
+ <circle cx="182.38" cy="54.08" r="54.08" fill="currentColor" />
26
+ </svg>
27
+ );
28
+
29
+ export default PostalIcon;
@@ -0,0 +1,2 @@
1
+ export { default as PostalIcon } from './PostalIcon';
2
+ export { default as InstagramWhiteIcon } from './InstagramWhiteIcon';
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type BarChart01IconProps = {
5
+ size?: number;
6
+ color?: string;
7
+ };
8
+
9
+ const BarChart01Icon: React.FC<BarChart01IconProps> = ({
10
+ size = 18,
11
+ color = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
14
+ <Path
15
+ d="M13.5 15V7.5M9 15V3M4.5 15V10.5"
16
+ stroke={color}
17
+ strokeWidth="1.5"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { BarChart01Icon };
25
+ export default BarChart01Icon;
@@ -0,0 +1,34 @@
1
+ import React from "react";
2
+
3
+ type IconProps = {
4
+ size?: number;
5
+ color?: string;
6
+ className?: string;
7
+ };
8
+
9
+ const BarChart01Icon: React.FC<IconProps> = ({
10
+ size = 18,
11
+ color = "currentColor",
12
+ className,
13
+ }) => (
14
+ <svg
15
+ width={size}
16
+ height={size}
17
+ viewBox="0 0 18 18"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ className={className}
21
+ role="img"
22
+ aria-hidden="true"
23
+ >
24
+ <path
25
+ d="M13.5 15V7.5M9 15V3M4.5 15V10.5"
26
+ stroke={color}
27
+ strokeWidth="1.5"
28
+ strokeLinecap="round"
29
+ strokeLinejoin="round"
30
+ />
31
+ </svg>
32
+ );
33
+
34
+ export default BarChart01Icon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type BarChart10IconProps = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const BarChart10Icon = ({ size = 15 }: BarChart10IconProps) => {
9
+ return (
10
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none">
11
+ <Path
12
+ d="M5.625 4.375H2.875C2.52497 4.375 2.34995 4.375 2.21626 4.44312C2.09865 4.50304 2.00304 4.59865 1.94312 4.71626C1.875 4.84995 1.875 5.02497 1.875 5.375V12.125C1.875 12.475 1.875 12.65 1.94312 12.7837C2.00304 12.9013 2.09865 12.997 2.21626 13.0569C2.34995 13.125 2.52497 13.125 2.875 13.125H5.625M5.625 13.125H9.375M5.625 13.125L5.625 2.875C5.625 2.52497 5.625 2.34995 5.69312 2.21626C5.75304 2.09865 5.84865 2.00304 5.96626 1.94312C6.09995 1.875 6.27497 1.875 6.625 1.875L8.375 1.875C8.72503 1.875 8.90005 1.875 9.03374 1.94312C9.15135 2.00304 9.24696 2.09865 9.30688 2.21626C9.375 2.34995 9.375 2.52497 9.375 2.875V13.125M9.375 6.875H12.125C12.475 6.875 12.65 6.875 12.7837 6.94312C12.9013 7.00304 12.997 7.09865 13.0569 7.21626C13.125 7.34995 13.125 7.52497 13.125 7.875V12.125C13.125 12.475 13.125 12.65 13.0569 12.7837C12.997 12.9013 12.9013 12.997 12.7837 13.0569C12.65 13.125 12.475 13.125 12.125 13.125H9.375"
13
+ stroke="currentColor"
14
+ strokeWidth="1.25"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ </Svg>
19
+ );
20
+ };
21
+
22
+ export { BarChart10Icon };
23
+ export default BarChart10Icon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ type BarChart10IconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string;
5
+ };
6
+
7
+ export default function BarChart10Icon({
8
+ size = 15,
9
+ className,
10
+ ...props
11
+ }: BarChart10IconProps) {
12
+ return (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 15 15"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M5.625 4.375H2.875C2.52497 4.375 2.34995 4.375 2.21626 4.44312C2.09865 4.50304 2.00304 4.59865 1.94312 4.71626C1.875 4.84995 1.875 5.02497 1.875 5.375V12.125C1.875 12.475 1.875 12.65 1.94312 12.7837C2.00304 12.9013 2.09865 12.997 2.21626 13.0569C2.34995 13.125 2.52497 13.125 2.875 13.125H5.625M5.625 13.125H9.375M5.625 13.125L5.625 2.875C5.625 2.52497 5.625 2.34995 5.69312 2.21626C5.75304 2.09865 5.84865 2.00304 5.96626 1.94312C6.09995 1.875 6.27497 1.875 6.625 1.875L8.375 1.875C8.72503 1.875 8.90005 1.875 9.03374 1.94312C9.15135 2.00304 9.24696 2.09865 9.30688 2.21626C9.375 2.34995 9.375 2.52497 9.375 2.875V13.125M9.375 6.875H12.125C12.475 6.875 12.65 6.875 12.7837 6.94312C12.9013 7.00304 12.997 7.09865 13.0569 7.21626C13.125 7.34995 13.125 7.52497 13.125 7.875V12.125C13.125 12.475 13.125 12.65 13.0569 12.7837C12.997 12.9013 12.9013 12.997 12.7837 13.0569C12.65 13.125 12.475 13.125 12.125 13.125H9.375"
24
+ stroke="currentColor"
25
+ strokeWidth="1.25"
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+ }
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type LineChart03UpIconProps = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const LineChart03UpIcon = ({ size = 16 }: LineChart03UpIconProps) => {
9
+ return (
10
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
11
+ <Path
12
+ d="M11.3333 6L7.71046 9.62288C7.57845 9.75488 7.51245 9.82088 7.43634 9.84561C7.36939 9.86737 7.29728 9.86737 7.23033 9.84561C7.15422 9.82088 7.08822 9.75488 6.95621 9.62288L5.71046 8.37712C5.57845 8.24512 5.51245 8.17912 5.43634 8.15439C5.36939 8.13263 5.29728 8.13263 5.23033 8.15439C5.15422 8.17912 5.08822 8.24512 4.95621 8.37712L2 11.3333M11.3333 6H8.66667M11.3333 6V8.66667M5.2 14H10.8C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8V5.2C14 4.0799 14 3.51984 13.782 3.09202C13.5903 2.71569 13.2843 2.40973 12.908 2.21799C12.4802 2 11.9201 2 10.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.0799 2 5.2V10.8C2 11.9201 2 12.4802 2.21799 12.908C2.40973 13.2843 2.71569 13.5903 3.09202 13.782C3.51984 14 4.0799 14 5.2 14Z"
13
+ stroke="currentColor"
14
+ strokeWidth={1.25}
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ </Svg>
19
+ );
20
+ };
21
+
22
+ export { LineChart03UpIcon };
23
+ export default LineChart03UpIcon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ type LineChart03UpIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string;
5
+ };
6
+
7
+ export default function LineChart03UpIcon({
8
+ size = 16,
9
+ className,
10
+ ...props
11
+ }: LineChart03UpIconProps) {
12
+ return (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 16 16"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M11.3333 6L7.71046 9.62288C7.57845 9.75488 7.51245 9.82088 7.43634 9.84561C7.36939 9.86737 7.29728 9.86737 7.23033 9.84561C7.15422 9.82088 7.08822 9.75488 6.95621 9.62288L5.71046 8.37712C5.57845 8.24512 5.51245 8.17912 5.43634 8.15439C5.36939 8.13263 5.29728 8.13263 5.23033 8.15439C5.15422 8.17912 5.08822 8.24512 4.95621 8.37712L2 11.3333M11.3333 6H8.66667M11.3333 6V8.66667M5.2 14H10.8C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8V5.2C14 4.0799 14 3.51984 13.782 3.09202C13.5903 2.71569 13.2843 2.40973 12.908 2.21799C12.4802 2 11.9201 2 10.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.0799 2 5.2V10.8C2 11.9201 2 12.4802 2.21799 12.908C2.40973 13.2843 2.71569 13.5903 3.09202 13.782C3.51984 14 4.0799 14 5.2 14Z"
24
+ stroke="currentColor"
25
+ strokeWidth={1.25}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+ }
@@ -0,0 +1,3 @@
1
+ export { default as BarChart01Icon } from './BarChart01Icon';
2
+ export { default as BarChart10Icon } from './BarChart10Icon';
3
+ export { default as LineChart03UpIcon } from './LineChart03UpIcon';
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type AnnotationInfoIconProps = {
5
+ size?: string | number;
6
+ };
7
+
8
+ const AnnotationInfoIcon = ({
9
+ size = 24,
10
+ }: AnnotationInfoIconProps) => {
11
+ return (
12
+ <Svg
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 24 24"
16
+ fill="none"
17
+ >
18
+ <Path
19
+ d="M12 14V10.5M12 7H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
20
+ stroke="black"
21
+ strokeWidth={2}
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </Svg>
26
+ );
27
+ };
28
+
29
+ export { AnnotationInfoIcon };
30
+ export default AnnotationInfoIcon;
@@ -0,0 +1,38 @@
1
+ import * as React from "react";
2
+
3
+ type AnnotationInfoIconProps = React.SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ size?: string | number;
6
+ };
7
+
8
+ const AnnotationInfoIcon = ({
9
+ title = "Annotation info",
10
+ size = 24,
11
+ className,
12
+ ...props
13
+ }: AnnotationInfoIconProps) => {
14
+ return (
15
+ <svg
16
+ width={size}
17
+ height={size}
18
+ viewBox="0 0 24 24"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ role="img"
22
+ aria-label={title}
23
+ className={className}
24
+ {...props}
25
+ >
26
+ {title ? <title>{title}</title> : null}
27
+ <path
28
+ d="M12 14V10.5M12 7H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
29
+ stroke="black"
30
+ strokeWidth={2}
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ </svg>
35
+ );
36
+ };
37
+
38
+ export default AnnotationInfoIcon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ export function ChatBubbleDotIcon() {
5
+ return (
6
+ <Svg
7
+ width="18"
8
+ height="18"
9
+ viewBox="0 0 24 24"
10
+ fill="none"
11
+ >
12
+ <Path
13
+ d="M20.1208 3.87868C21.2924 5.05025 21.2924 6.94975 20.1208 8.12132C18.9493 9.29289 17.0498 9.29289 15.8782 8.12132C14.7066 6.94975 14.7066 5.05025 15.8782 3.87868C17.0498 2.70711 18.9493 2.70711 20.1208 3.87868Z"
14
+ stroke="#007EFF"
15
+ strokeWidth={2}
16
+ fill={"#007EFF"}
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ <Path
21
+ d="M11.707 3.03638C7.38421 3.43612 3.99962 7.07276 3.99962 11.4999C3.99962 12.4499 4.15547 13.3635 4.44299 14.2165C4.55119 14.5375 4.60529 14.698 4.61505 14.8213C4.62469 14.9431 4.6174 15.0285 4.58728 15.1469C4.55677 15.2667 4.48942 15.3914 4.35472 15.6407L2.71906 18.6683C2.48575 19.1001 2.36909 19.316 2.3952 19.4827C2.41794 19.6278 2.50337 19.7556 2.6288 19.8321C2.7728 19.92 3.01692 19.8948 3.50517 19.8443L8.62619 19.3149C8.78121 19.2989 8.85882 19.2909 8.92949 19.2936C8.999 19.2962 9.04807 19.3028 9.11586 19.3184C9.18478 19.3343 9.27145 19.3677 9.44478 19.4344C10.3928 19.7997 11.4228 19.9999 12.4996 19.9999C16.9304 19.9999 20.5694 16.6097 20.9641 12.2818"
22
+ stroke="currentColor"
23
+ strokeWidth={2}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </Svg>
28
+ );
29
+ }
30
+
31
+ export default ChatBubbleDotIcon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ export function ChatBubbleDotIcon(props: React.SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg
6
+ width="18"
7
+ height="18"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ aria-hidden="true"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M20.1208 3.87868C21.2924 5.05025 21.2924 6.94975 20.1208 8.12132C18.9493 9.29289 17.0498 9.29289 15.8782 8.12132C14.7066 6.94975 14.7066 5.05025 15.8782 3.87868C17.0498 2.70711 18.9493 2.70711 20.1208 3.87868Z"
16
+ stroke="#007EFF"
17
+ strokeWidth={2}
18
+ fill={"#007EFF"}
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M11.707 3.03638C7.38421 3.43612 3.99962 7.07276 3.99962 11.4999C3.99962 12.4499 4.15547 13.3635 4.44299 14.2165C4.55119 14.5375 4.60529 14.698 4.61505 14.8213C4.62469 14.9431 4.6174 15.0285 4.58728 15.1469C4.55677 15.2667 4.48942 15.3914 4.35472 15.6407L2.71906 18.6683C2.48575 19.1001 2.36909 19.316 2.3952 19.4827C2.41794 19.6278 2.50337 19.7556 2.6288 19.8321C2.7728 19.92 3.01692 19.8948 3.50517 19.8443L8.62619 19.3149C8.78121 19.2989 8.85882 19.2909 8.92949 19.2936C8.999 19.2962 9.04807 19.3028 9.11586 19.3184C9.18478 19.3343 9.27145 19.3677 9.44478 19.4344C10.3928 19.7997 11.4228 19.9999 12.4996 19.9999C16.9304 19.9999 20.5694 16.6097 20.9641 12.2818"
24
+ stroke="currentColor"
25
+ strokeWidth={2}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+ }
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type ChatBubbleIconProps = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const ChatBubbleIcon = ({
9
+ size = 18,
10
+ }: ChatBubbleIconProps) => {
11
+ return (
12
+ <Svg
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 18 18"
16
+ fill="none"
17
+ >
18
+ <Path
19
+ d="M15.749 8.625C15.749 12.1458 12.8948 15 9.37399 15C8.5664 15 7.79389 14.8498 7.08285 14.5759C6.95285 14.5258 6.88785 14.5008 6.83616 14.4889C6.78532 14.4771 6.74852 14.4722 6.69638 14.4703C6.64337 14.4682 6.58522 14.4742 6.46891 14.4863L2.62814 14.8833C2.26196 14.9211 2.07887 14.9401 1.97087 14.8742C1.8768 14.8168 1.81273 14.7209 1.79567 14.6121C1.77609 14.4871 1.86358 14.3252 2.03856 14.0013L3.26531 11.7306C3.36633 11.5436 3.41685 11.4501 3.43973 11.3602C3.46232 11.2714 3.46778 11.2074 3.46056 11.1161C3.45324 11.0236 3.41266 10.9032 3.33151 10.6625C3.11587 10.0227 2.99899 9.3375 2.99899 8.625C2.99899 5.10418 5.85317 2.25 9.37399 2.25C12.8948 2.25 15.749 5.10418 15.749 8.625Z"
20
+ stroke="currentColor"
21
+ strokeWidth={1.67}
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </Svg>
26
+ );
27
+ };
28
+
29
+ export { ChatBubbleIcon };
30
+ export default ChatBubbleIcon;
@@ -0,0 +1,37 @@
1
+ import * as React from "react";
2
+
3
+ type ChatBubbleIconProps = React.SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ };
6
+
7
+ const ChatBubbleIcon = ({
8
+ title = "Chat",
9
+ className,
10
+ ...props
11
+ }: ChatBubbleIconProps) => {
12
+ const ariaLabel = props["aria-label"] ?? title;
13
+
14
+ return (
15
+ <svg
16
+ width="18"
17
+ height="18"
18
+ viewBox="0 0 18 18"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ role="img"
22
+ aria-label={ariaLabel}
23
+ className={className}
24
+ {...props}
25
+ >
26
+ <path
27
+ d="M15.749 8.625C15.749 12.1458 12.8948 15 9.37399 15C8.5664 15 7.79389 14.8498 7.08285 14.5759C6.95285 14.5258 6.88785 14.5008 6.83616 14.4889C6.78532 14.4771 6.74852 14.4722 6.69638 14.4703C6.64337 14.4682 6.58522 14.4742 6.46891 14.4863L2.62814 14.8833C2.26196 14.9211 2.07887 14.9401 1.97087 14.8742C1.8768 14.8168 1.81273 14.7209 1.79567 14.6121C1.77609 14.4871 1.86358 14.3252 2.03856 14.0013L3.26531 11.7306C3.36633 11.5436 3.41685 11.4501 3.43973 11.3602C3.46232 11.2714 3.46778 11.2074 3.46056 11.1161C3.45324 11.0236 3.41266 10.9032 3.33151 10.6625C3.11587 10.0227 2.99899 9.3375 2.99899 8.625C2.99899 5.10418 5.85317 2.25 9.37399 2.25C12.8948 2.25 15.749 5.10418 15.749 8.625Z"
28
+ stroke="currentColor"
29
+ strokeWidth={1.67}
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ );
35
+ };
36
+
37
+ export default ChatBubbleIcon;
@@ -0,0 +1,36 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface MailIconProps {
5
+ width?: number;
6
+ height?: number;
7
+ stroke?: string;
8
+ strokeWidth?: number;
9
+ }
10
+
11
+ const MailIcon: React.FC<MailIconProps> = ({
12
+ width = 18,
13
+ height = 18,
14
+ stroke = '#000000',
15
+ strokeWidth = 1.5,
16
+ }) => {
17
+ return (
18
+ <Svg
19
+ width={width}
20
+ height={height}
21
+ viewBox="0 0 18 18"
22
+ fill="none"
23
+ >
24
+ <Path
25
+ d="M1.5 5.25L7.62369 9.53658C8.11957 9.8837 8.36751 10.0573 8.6372 10.1245C8.87542 10.1839 9.12458 10.1839 9.3628 10.1245C9.63249 10.0573 9.88043 9.8837 10.3763 9.53658L16.5 5.25M5.1 15H12.9C14.1601 15 14.7902 15 15.2715 14.7548C15.6948 14.539 16.039 14.1948 16.2548 13.7715C16.5 13.2902 16.5 12.6601 16.5 11.4V6.6C16.5 5.33988 16.5 4.70982 16.2548 4.22852C16.039 3.80516 15.6948 3.46095 15.2715 3.24524C14.7902 3 14.1601 3 12.9 3H5.1C3.83988 3 3.20982 3 2.72852 3.24524C2.30516 3.46095 1.96095 3.80516 1.74524 4.22852C1.5 4.70982 1.5 5.33988 1.5 6.6V11.4C1.5 12.6601 1.5 13.2902 1.74524 13.7715C1.96095 14.1948 2.30516 14.539 2.72852 14.7548C3.20982 15 3.83988 15 5.1 15Z"
26
+ stroke={stroke}
27
+ strokeWidth={strokeWidth}
28
+ strokeLinecap="round"
29
+ strokeLinejoin="round"
30
+ />
31
+ </Svg>
32
+ );
33
+ };
34
+
35
+ export { MailIcon };
36
+ export default MailIcon;