@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,27 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const LandingShareIcon: React.FC<IconProps> = ({ size = 24, color = "#020202" }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 24 24"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M9.99825 13C10.4277 13.5741 10.9756 14.0491 11.6048 14.3929C12.234 14.7367 12.9298 14.9411 13.6449 14.9923C14.36 15.0435 15.0778 14.9403 15.7496 14.6897C16.4214 14.4392 17.0314 14.047 17.5382 13.54L20.5382 10.54C21.449 9.59695 21.953 8.33394 21.9416 7.02296C21.9302 5.71198 21.4044 4.45791 20.4773 3.53087C19.5503 2.60383 18.2962 2.07799 16.9853 2.0666C15.6743 2.0552 14.4113 2.55918 13.4682 3.46997L11.7482 5.17997M13.9982 11C13.5688 10.4258 13.0209 9.95078 12.3917 9.60703C11.7625 9.26327 11.0667 9.05885 10.3516 9.00763C9.63645 8.95641 8.91866 9.0596 8.2469 9.31018C7.57514 9.56077 6.96513 9.9529 6.45825 10.46L3.45825 13.46C2.54746 14.403 2.04348 15.666 2.05488 16.977C2.06627 18.288 2.59211 19.542 3.51915 20.4691C4.44619 21.3961 5.70026 21.9219 7.01124 21.9333C8.32222 21.9447 9.58524 21.4408 10.5282 20.53L12.2382 18.82"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+
26
+ export { LandingShareIcon };
27
+ export default LandingShareIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const LandingShareIcon: React.FC<IconProps> = ({ size = 24, color = "#020202" }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 24 24"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <path
17
+ d="M9.99825 13C10.4277 13.5741 10.9756 14.0491 11.6048 14.3929C12.234 14.7367 12.9298 14.9411 13.6449 14.9923C14.36 15.0435 15.0778 14.9403 15.7496 14.6897C16.4214 14.4392 17.0314 14.047 17.5382 13.54L20.5382 10.54C21.449 9.59695 21.953 8.33394 21.9416 7.02296C21.9302 5.71198 21.4044 4.45791 20.4773 3.53087C19.5503 2.60383 18.2962 2.07799 16.9853 2.0666C15.6743 2.0552 14.4113 2.55918 13.4682 3.46997L11.7482 5.17997M13.9982 11C13.5688 10.4258 13.0209 9.95078 12.3917 9.60703C11.7625 9.26327 11.0667 9.05885 10.3516 9.00763C9.63645 8.95641 8.91866 9.0596 8.2469 9.31018C7.57514 9.56077 6.96513 9.9529 6.45825 10.46L3.45825 13.46C2.54746 14.403 2.04348 15.666 2.05488 16.977C2.06627 18.288 2.59211 19.542 3.51915 20.4691C4.44619 21.3961 5.70026 21.9219 7.01124 21.9333C8.32222 21.9447 9.58524 21.4408 10.5282 20.53L12.2382 18.82"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ );
25
+
26
+ export default LandingShareIcon;
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const LandingUploadIcon: React.FC<IconProps> = ({ size = 24, color = "#020202" }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 24 24"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M8 16L12 12M12 12L16 16M12 12V21M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+
26
+ export { LandingUploadIcon };
27
+ export default LandingUploadIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const LandingUploadIcon: React.FC<IconProps> = ({ size = 24, color = "#020202" }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 24 24"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <path
17
+ d="M8 16L12 12M12 12L16 16M12 12V21M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ );
25
+
26
+ export default LandingUploadIcon;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface LayersThree01IconProps {
5
+ size?: number | string;
6
+ }
7
+
8
+ const LayersThree01Icon: React.FC<LayersThree01IconProps> = ({ size = 24 }) => {
9
+ return (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 24 24"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M2 12.0001L11.6422 16.8212C11.7734 16.8868 11.839 16.9196 11.9078 16.9325C11.9687 16.9439 12.0313 16.9439 12.0922 16.9325C12.161 16.9196 12.2266 16.8868 12.3578 16.8212L22 12.0001M2 17.0001L11.6422 21.8212C11.7734 21.8868 11.839 21.9196 11.9078 21.9325C11.9687 21.9439 12.0313 21.9439 12.0922 21.9325C12.161 21.9196 12.2266 21.8868 12.3578 21.8212L22 17.0001M2 7.00006L11.6422 2.17895C11.7734 2.11336 11.839 2.08056 11.9078 2.06766C11.9687 2.05622 12.0313 2.05622 12.0922 2.06766C12.161 2.08056 12.2266 2.11336 12.3578 2.17895L22 7.00006L12.3578 11.8212C12.2266 11.8868 12.161 11.9196 12.0922 11.9325C12.0313 11.9439 11.9687 11.9439 11.9078 11.9325C11.839 11.9196 11.7734 11.8868 11.6422 11.8212L2 7.00006Z"
18
+ stroke="currentColor"
19
+ strokeWidth="2"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+ };
26
+
27
+ export { LayersThree01Icon };
28
+ export default LayersThree01Icon;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+
3
+ interface LayersThree01IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+
7
+ export default function LayersThree01Icon({
8
+ size = 24,
9
+ className,
10
+ ...props
11
+ }: LayersThree01IconProps) {
12
+ return (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 24 24"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M2 12.0001L11.6422 16.8212C11.7734 16.8868 11.839 16.9196 11.9078 16.9325C11.9687 16.9439 12.0313 16.9439 12.0922 16.9325C12.161 16.9196 12.2266 16.8868 12.3578 16.8212L22 12.0001M2 17.0001L11.6422 21.8212C11.7734 21.8868 11.839 21.9196 11.9078 21.9325C11.9687 21.9439 12.0313 21.9439 12.0922 21.9325C12.161 21.9196 12.2266 21.8868 12.3578 21.8212L22 17.0001M2 7.00006L11.6422 2.17895C11.7734 2.11336 11.839 2.08056 11.9078 2.06766C11.9687 2.05622 12.0313 2.05622 12.0922 2.06766C12.161 2.08056 12.2266 2.11336 12.3578 2.17895L22 7.00006L12.3578 11.8212C12.2266 11.8868 12.161 11.9196 12.0922 11.9325C12.0313 11.9439 11.9687 11.9439 11.9078 11.9325C11.839 11.9196 11.7734 11.8868 11.6422 11.8212L2 7.00006Z"
24
+ stroke="currentColor"
25
+ strokeWidth="2"
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+ }
@@ -0,0 +1,40 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface LyricsIconProps {
5
+ width?: number;
6
+ height?: number;
7
+ stroke?: string;
8
+ strokeWidth?: number;
9
+ }
10
+
11
+ const LyricsIcon: React.FC<LyricsIconProps> = ({
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="M9.75 5.25H3.9C3.05992 5.25 2.63988 5.25 2.31901 5.41349C2.03677 5.5573 1.8073 5.78677 1.66349 6.06901C1.5 6.38988 1.5 6.80992 1.5 7.65V10.35C1.5 11.1901 1.5 11.6101 1.66349 11.931C1.8073 12.2132 2.03677 12.4427 2.31901 12.5865C2.63988 12.75 3.05992 12.75 3.9 12.75H9.75
26
+ M12.75 5.25H14.1C14.9401 5.25 15.3601 5.25 15.681 5.41349C15.9632 5.5573 16.1927 5.78677 16.3365 6.06901C16.5 6.38988 16.5 6.80992 16.5 7.65V10.35C16.5 11.1901 16.5 11.6101 16.3365 11.931C16.1927 12.2132 15.9632 12.4427 15.681 12.5865C15.3601 12.75 14.9401 12.75 14.1 12.75H12.75
27
+ M12.75 15.75L12.75 2.25
28
+ M14.625 2.25001L10.875 2.25
29
+ M14.625 15.75L10.875 15.75"
30
+ stroke={stroke}
31
+ strokeWidth={strokeWidth}
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
+ />
35
+ </Svg>
36
+ );
37
+ };
38
+
39
+ export { LyricsIcon };
40
+ export default LyricsIcon;
@@ -0,0 +1,41 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * LyricsIcon React component
5
+ *
6
+ * @param props - SVG props to customize the icon (e.g., width, height, stroke color)
7
+ */
8
+ const LyricsIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
9
+ const {
10
+ width = 18,
11
+ height = 18,
12
+ stroke = 'currentColor',
13
+ strokeWidth = 1.5,
14
+ ...restProps
15
+ } = props;
16
+
17
+ return (
18
+ <svg
19
+ width={width}
20
+ height={height}
21
+ viewBox="0 0 18 18"
22
+ fill="none"
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ {...restProps}
25
+ >
26
+ <path
27
+ d="M9.75 5.25H3.9C3.05992 5.25 2.63988 5.25 2.31901 5.41349C2.03677 5.5573 1.8073 5.78677 1.66349 6.06901C1.5 6.38988 1.5 6.80992 1.5 7.65V10.35C1.5 11.1901 1.5 11.6101 1.66349 11.931C1.8073 12.2132 2.03677 12.4427 2.31901 12.5865C2.63988 12.75 3.05992 12.75 3.9 12.75H9.75
28
+ M12.75 5.25H14.1C14.9401 5.25 15.3601 5.25 15.681 5.41349C15.9632 5.5573 16.1927 5.78677 16.3365 6.06901C16.5 6.38988 16.5 6.80992 16.5 7.65V10.35C16.5 11.1901 16.5 11.6101 16.3365 11.931C16.1927 12.2132 15.9632 12.4427 15.681 12.5865C15.3601 12.75 14.9401 12.75 14.1 12.75H12.75
29
+ M12.75 15.75L12.75 2.25
30
+ M14.625 2.25001L10.875 2.25
31
+ M14.625 15.75L10.875 15.75"
32
+ stroke={stroke}
33
+ strokeWidth={strokeWidth}
34
+ strokeLinecap="round"
35
+ strokeLinejoin="round"
36
+ />
37
+ </svg>
38
+ );
39
+ };
40
+
41
+ export default LyricsIcon;
@@ -0,0 +1,34 @@
1
+ import React from "react";
2
+ import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const MoonIcon: React.FC<IconProps> = ({ size = 18, color = '#000000' }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 18 18"
14
+ fill="none"
15
+ >
16
+ <G clipPath="url(#moon-clip)">
17
+ <Path
18
+ d="M16.4661 9.71875C15.4335 11.5302 13.4844 12.7515 11.25 12.7515C7.93629 12.7515 5.25 10.0652 5.25 6.75153C5.25 4.517 6.4715 2.56778 8.2832 1.53516C4.47731 1.89601 1.5 5.10099 1.5 9.00135C1.5 13.1435 4.85786 16.5013 9 16.5013C12.9002 16.5013 16.105 13.5244 16.4661 9.71875Z"
19
+ stroke={color}
20
+ strokeWidth="1.5"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </G>
25
+ <Defs>
26
+ <ClipPath id="moon-clip">
27
+ <Rect width="18" height="18" fill="white" />
28
+ </ClipPath>
29
+ </Defs>
30
+ </Svg>
31
+ );
32
+
33
+ export { MoonIcon };
34
+ export default MoonIcon;
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const MoonIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor" }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 18 18"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <g clipPath="url(#clip0_moonIcon)">
17
+ <path
18
+ d="M16.4661 9.71875C15.4335 11.5302 13.4844 12.7515 11.25 12.7515C7.93629 12.7515 5.25 10.0652 5.25 6.75153C5.25 4.517 6.4715 2.56778 8.2832 1.53516C4.47731 1.89601 1.5 5.10099 1.5 9.00135C1.5 13.1435 4.85786 16.5013 9 16.5013C12.9002 16.5013 16.105 13.5244 16.4661 9.71875Z"
19
+ stroke={color}
20
+ strokeWidth="1.5"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </g>
25
+ <defs>
26
+ <clipPath id="clip0_moonIcon">
27
+ <rect width="18" height="18" fill="white" />
28
+ </clipPath>
29
+ </defs>
30
+ </svg>
31
+ );
32
+
33
+ export default MoonIcon;
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type MusicNoteIconProps = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const MusicNoteIcon: React.FC<MusicNoteIconProps> = ({ size = 17 }) => {
9
+ return (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 17 17"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M6.375 14.8748C7.5486 14.8748 8.5 13.9234 8.5 12.7498C8.5 11.5762 7.5486 10.6248 6.375 10.6248C5.20139 10.6248 4.25 11.5762 4.25 12.7498C4.25 13.9234 5.20139 14.8748 6.375 14.8748Z"
18
+ fill="currentColor"
19
+ />
20
+ <Path
21
+ d="M8.5 12.7498V3.95859C8.5 3.35139 8.5 3.04779 8.62788 2.86495C8.73955 2.70529 8.91206 2.59867 9.1048 2.5702C9.32554 2.53758 9.59708 2.67336 10.1402 2.9449L12.75 4.24982M8.5 12.7498C8.5 13.9234 7.5486 14.8748 6.375 14.8748C5.20139 14.8748 4.25 13.9234 4.25 12.7498C4.25 11.5762 5.20139 10.6248 6.375 10.6248C7.5486 10.6248 8.5 11.5762 8.5 12.7498Z"
22
+ stroke="currentColor"
23
+ strokeWidth="1.25"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </Svg>
28
+ );
29
+ };
30
+
31
+ export { MusicNoteIcon };
32
+ export default MusicNoteIcon;
@@ -0,0 +1,35 @@
1
+ import * as React from "react";
2
+
3
+ type MusicNoteIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string;
5
+ };
6
+
7
+ export default function MusicNoteIcon({
8
+ size = 17,
9
+ className,
10
+ ...props
11
+ }: MusicNoteIconProps) {
12
+ return (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 17 17"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M6.375 14.8748C7.5486 14.8748 8.5 13.9234 8.5 12.7498C8.5 11.5762 7.5486 10.6248 6.375 10.6248C5.20139 10.6248 4.25 11.5762 4.25 12.7498C4.25 13.9234 5.20139 14.8748 6.375 14.8748Z"
24
+ fill="currentColor"
25
+ />
26
+ <path
27
+ d="M8.5 12.7498V3.95859C8.5 3.35139 8.5 3.04779 8.62788 2.86495C8.73955 2.70529 8.91206 2.59867 9.1048 2.5702C9.32554 2.53758 9.59708 2.67336 10.1402 2.9449L12.75 4.24982M8.5 12.7498C8.5 13.9234 7.5486 14.8748 6.375 14.8748C5.20139 14.8748 4.25 13.9234 4.25 12.7498C4.25 11.5762 5.20139 10.6248 6.375 10.6248C7.5486 10.6248 8.5 11.5762 8.5 12.7498Z"
28
+ stroke="currentColor"
29
+ strokeWidth="1.25"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ );
35
+ }
@@ -0,0 +1,37 @@
1
+ import * as React from "react";
2
+ import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
3
+
4
+ type IconProps = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const PinIcon: React.FC<IconProps> = ({ size = 15 }) => (
9
+ <Svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 15 15"
13
+ fill="none"
14
+ >
15
+ <G clipPath="url(#pin-clip)">
16
+ <Path
17
+ d="M8.18921 2.27902C8.38413 1.82421 8.48159 1.5968 8.63908 1.4935C8.7768 1.40317 8.94461 1.37085 9.10603 1.40357C9.29062 1.44099 9.46557 1.61594 9.81546 1.96583L13.0299 5.18029C13.3798 5.53018 13.5548 5.70513 13.5922 5.88972C13.6249 6.05114 13.5926 6.21895 13.5023 6.35668C13.399 6.51416 13.1715 6.61162 12.7167 6.80654L11.1578 7.47468C11.0916 7.50302 11.0586 7.51719 11.0275 7.53491C11 7.55064 10.9737 7.56845 10.9489 7.58818C10.9209 7.6104 10.8955 7.63584 10.8446 7.68671L9.86902 8.66227C9.78944 8.74185 9.74965 8.78163 9.71804 8.82697C9.68997 8.8672 9.66675 8.91061 9.64883 8.95627C9.62865 9.00773 9.61762 9.0629 9.59555 9.17326L9.13749 11.4635C9.01845 12.0587 8.95893 12.3563 8.80202 12.4956C8.66533 12.6168 8.4824 12.6722 8.30138 12.6471C8.0936 12.6183 7.879 12.4037 7.4498 11.9745L3.02121 7.54595C2.59202 7.11676 2.37742 6.90216 2.34861 6.69437C2.32352 6.51336 2.3789 6.33042 2.50019 6.19373C2.63942 6.03682 2.93702 5.9773 3.5322 5.85827L5.82249 5.40021C5.93285 5.37814 5.98803 5.3671 6.03948 5.34692C6.08515 5.32901 6.12855 5.30578 6.16879 5.27772C6.21412 5.2461 6.25391 5.20631 6.33349 5.12673L7.30904 4.15118C7.35992 4.1003 7.38536 4.07486 7.40757 4.0469C7.4273 4.02206 7.44511 3.99575 7.46085 3.9682C7.47856 3.9372 7.49273 3.90413 7.52108 3.83799L8.18921 2.27902Z"
18
+ fill="currentColor"
19
+ />
20
+ <Path
21
+ d="M5.23549 9.76024L1.69995 13.2958M7.30904 4.15118L6.33349 5.12673C6.25391 5.20631 6.21412 5.2461 6.16879 5.27772C6.12855 5.30578 6.08515 5.32901 6.03948 5.34692C5.98803 5.3671 5.93285 5.37814 5.8225 5.40021L3.5322 5.85827C2.93702 5.9773 2.63942 6.03682 2.50019 6.19373C2.3789 6.33042 2.32352 6.51336 2.34861 6.69437C2.37742 6.90216 2.59202 7.11676 3.02121 7.54595L7.4498 11.9745C7.879 12.4037 8.0936 12.6183 8.30138 12.6471C8.4824 12.6722 8.66533 12.6168 8.80202 12.4956C8.95893 12.3563 9.01845 12.0587 9.13749 11.4635L9.59555 9.17326C9.61762 9.0629 9.62865 9.00773 9.64883 8.95627C9.66675 8.91061 9.68997 8.8672 9.71804 8.82697C9.74965 8.78163 9.78944 8.74185 9.86902 8.66227L10.8446 7.68671C10.8955 7.63584 10.9209 7.6104 10.9489 7.58818C10.9737 7.56845 11 7.55064 11.0275 7.53491C11.0586 7.51719 11.0916 7.50302 11.1578 7.47468L12.7167 6.80654C13.1715 6.61162 13.399 6.51416 13.5023 6.35667C13.5926 6.21895 13.6249 6.05114 13.5922 5.88972C13.5548 5.70513 13.3798 5.53018 13.0299 5.18029L9.81546 1.96583C9.46557 1.61594 9.29062 1.44099 9.10603 1.40357C8.94461 1.37085 8.7768 1.40317 8.63908 1.4935C8.48159 1.5968 8.38413 1.82421 8.18921 2.27902L7.52108 3.83799C7.49273 3.90413 7.47856 3.9372 7.46085 3.9682C7.44511 3.99575 7.4273 4.02206 7.40757 4.0469C7.38536 4.07486 7.35992 4.1003 7.30904 4.15118Z"
22
+ stroke="currentColor"
23
+ strokeWidth={1.5}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </G>
28
+ <Defs>
29
+ <ClipPath id="pin-clip">
30
+ <Rect width="15" height="15" fill="white" />
31
+ </ClipPath>
32
+ </Defs>
33
+ </Svg>
34
+ );
35
+
36
+ export { PinIcon };
37
+ export default PinIcon;
@@ -0,0 +1,49 @@
1
+ // components/icons/pin-icon.tsx
2
+ import * as React from "react";
3
+
4
+ type IconProps = React.SVGProps<SVGSVGElement> & {
5
+ title?: string;
6
+ size?: number | string; // convenience
7
+ };
8
+
9
+ const PinIcon = React.forwardRef<SVGSVGElement, IconProps>(
10
+ ({ title, size = 15, className, ...props }, ref) => (
11
+ <svg
12
+ ref={ref}
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 15 15"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ aria-hidden={title ? undefined : true}
19
+ role={title ? "img" : "presentation"}
20
+ className={className}
21
+ {...props}
22
+ >
23
+ {title ? <title>{title}</title> : null}
24
+ <g clipPath="url(#clip0_8794_14510)">
25
+ {/* solid fill part */}
26
+ <path
27
+ d="M8.18921 2.27902C8.38413 1.82421 8.48159 1.5968 8.63908 1.4935C8.7768 1.40317 8.94461 1.37085 9.10603 1.40357C9.29062 1.44099 9.46557 1.61594 9.81546 1.96583L13.0299 5.18029C13.3798 5.53018 13.5548 5.70513 13.5922 5.88972C13.6249 6.05114 13.5926 6.21895 13.5023 6.35668C13.399 6.51416 13.1715 6.61162 12.7167 6.80654L11.1578 7.47468C11.0916 7.50302 11.0586 7.51719 11.0275 7.53491C11 7.55064 10.9737 7.56845 10.9489 7.58818C10.9209 7.6104 10.8955 7.63584 10.8446 7.68671L9.86902 8.66227C9.78944 8.74185 9.74965 8.78163 9.71804 8.82697C9.68997 8.8672 9.66675 8.91061 9.64883 8.95627C9.62865 9.00773 9.61762 9.0629 9.59555 9.17326L9.13749 11.4635C9.01845 12.0587 8.95893 12.3563 8.80202 12.4956C8.66533 12.6168 8.4824 12.6722 8.30138 12.6471C8.0936 12.6183 7.879 12.4037 7.4498 11.9745L3.02121 7.54595C2.59202 7.11676 2.37742 6.90216 2.34861 6.69437C2.32352 6.51336 2.3789 6.33042 2.50019 6.19373C2.63942 6.03682 2.93702 5.9773 3.5322 5.85827L5.82249 5.40021C5.93285 5.37814 5.98803 5.3671 6.03948 5.34692C6.08515 5.32901 6.12855 5.30578 6.16879 5.27772C6.21412 5.2461 6.25391 5.20631 6.33349 5.12673L7.30904 4.15118C7.35992 4.1003 7.38536 4.07486 7.40757 4.0469C7.4273 4.02206 7.44511 3.99575 7.46085 3.9682C7.47856 3.9372 7.49273 3.90413 7.52108 3.83799L8.18921 2.27902Z"
28
+ fill="currentColor"
29
+ />
30
+ {/* outline part */}
31
+ <path
32
+ d="M5.23549 9.76024L1.69995 13.2958M7.30904 4.15118L6.33349 5.12673C6.25391 5.20631 6.21412 5.2461 6.16879 5.27772C6.12855 5.30578 6.08515 5.32901 6.03948 5.34692C5.98803 5.3671 5.93285 5.37814 5.8225 5.40021L3.5322 5.85827C2.93702 5.9773 2.63942 6.03682 2.50019 6.19373C2.3789 6.33042 2.32352 6.51336 2.34861 6.69437C2.37742 6.90216 2.59202 7.11676 3.02121 7.54595L7.4498 11.9745C7.879 12.4037 8.0936 12.6183 8.30138 12.6471C8.4824 12.6722 8.66533 12.6168 8.80202 12.4956C8.95893 12.3563 9.01845 12.0587 9.13749 11.4635L9.59555 9.17326C9.61762 9.0629 9.62865 9.00773 9.64883 8.95627C9.66675 8.91061 9.68997 8.8672 9.71804 8.82697C9.74965 8.78163 9.78944 8.74185 9.86902 8.66227L10.8446 7.68671C10.8955 7.63584 10.9209 7.6104 10.9489 7.58818C10.9737 7.56845 11 7.55064 11.0275 7.53491C11.0586 7.51719 11.0916 7.50302 11.1578 7.47468L12.7167 6.80654C13.1715 6.61162 13.399 6.51416 13.5023 6.35667C13.5926 6.21895 13.6249 6.05114 13.5922 5.88972C13.5548 5.70513 13.3798 5.53018 13.0299 5.18029L9.81546 1.96583C9.46557 1.61594 9.29062 1.44099 9.10603 1.40357C8.94461 1.37085 8.7768 1.40317 8.63908 1.4935C8.48159 1.5968 8.38413 1.82421 8.18921 2.27902L7.52108 3.83799C7.49273 3.90413 7.47856 3.9372 7.46085 3.9682C7.44511 3.99575 7.4273 4.02206 7.40757 4.0469C7.38536 4.07486 7.35992 4.1003 7.30904 4.15118Z"
33
+ stroke="currentColor"
34
+ strokeWidth={1.5}
35
+ strokeLinecap="round"
36
+ strokeLinejoin="round"
37
+ />
38
+ </g>
39
+ <defs>
40
+ <clipPath id="clip0_8794_14510">
41
+ <rect width="15" height="15" fill="white" />
42
+ </clipPath>
43
+ </defs>
44
+ </svg>
45
+ ),
46
+ );
47
+ PinIcon.displayName = "PinIcon";
48
+
49
+ export default PinIcon;
@@ -0,0 +1,34 @@
1
+ import React from "react";
2
+ import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const QuestionCircleIcon: React.FC<IconProps> = ({ size = 18, color = '#000000' }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 18 18"
14
+ fill="none"
15
+ >
16
+ <G clipPath="url(#questioncircle-clip)">
17
+ <Path
18
+ d="M6.8175 6.75C6.99383 6.24875 7.34186 5.82608 7.79997 5.55685C8.25807 5.28762 8.79667 5.1892 9.32038 5.27903C9.84409 5.36886 10.3191 5.64114 10.6613 6.04765C11.0035 6.45415 11.1908 6.96864 11.19 7.5C11.19 9 8.94 9.75 8.94 9.75M9 12.75H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
19
+ stroke={color}
20
+ strokeWidth="1.5"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </G>
25
+ <Defs>
26
+ <ClipPath id="questioncircle-clip">
27
+ <Rect width="18" height="18" fill="white" />
28
+ </ClipPath>
29
+ </Defs>
30
+ </Svg>
31
+ );
32
+
33
+ export { QuestionCircleIcon };
34
+ export default QuestionCircleIcon;
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const QuestionCircleIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor" }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 18 18"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <g clipPath="url(#clip0_questionCircle)">
17
+ <path
18
+ d="M6.8175 6.75C6.99383 6.24875 7.34186 5.82608 7.79997 5.55685C8.25807 5.28762 8.79667 5.1892 9.32038 5.27903C9.84409 5.36886 10.3191 5.64114 10.6613 6.04765C11.0035 6.45415 11.1908 6.96864 11.19 7.5C11.19 9 8.94 9.75 8.94 9.75M9 12.75H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
19
+ stroke={color}
20
+ strokeWidth="1.5"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </g>
25
+ <defs>
26
+ <clipPath id="clip0_questionCircle">
27
+ <rect width="18" height="18" fill="white" />
28
+ </clipPath>
29
+ </defs>
30
+ </svg>
31
+ );
32
+
33
+ export default QuestionCircleIcon;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type Recording01Props = {
5
+ size?: number | string;
6
+ };
7
+
8
+ const Recording01Icon: React.FC<Recording01Props> = ({ size = 18 }) => {
9
+ return (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 18 18"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M2.25 7.5V10.5M5.625 8.25V9.75M9 4.5V13.5M12.375 2.25V15.75M15.75 7.5V10.5"
18
+ stroke="currentColor"
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+ };
26
+
27
+ export { Recording01Icon };
28
+ export default Recording01Icon;
@@ -0,0 +1,39 @@
1
+ import * as React from "react";
2
+
3
+ type Recording01Props = React.SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ size?: number | string;
6
+ };
7
+
8
+ const Recording01Icon = ({
9
+ title = "Copy",
10
+ className,
11
+ size = 18,
12
+ ...props
13
+ }: Recording01Props) => {
14
+ const ariaLabel = props["aria-label"] ?? title;
15
+
16
+ return (
17
+ <svg
18
+ width={size}
19
+ height={size}
20
+ viewBox="0 0 18 18"
21
+ fill="none"
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ role="img"
24
+ aria-label={ariaLabel}
25
+ className={className}
26
+ {...props}
27
+ >
28
+ <path
29
+ d="M2.25 7.5V10.5M5.625 8.25V9.75M9 4.5V13.5M12.375 2.25V15.75M15.75 7.5V10.5"
30
+ stroke="currentColor"
31
+ strokeWidth="1.5"
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
+ />
35
+ </svg>
36
+ );
37
+ };
38
+
39
+ export default Recording01Icon;
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type IconProps = {
5
+ size?: number;
6
+ color?: string;
7
+ };
8
+
9
+ const Share01Icon: React.FC<IconProps> = ({
10
+ size = 18,
11
+ color = '#000000',
12
+ }) => (
13
+ <Svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 18 18"
17
+ fill="none"
18
+ >
19
+ <Path
20
+ d="M15.75 9V12.15C15.75 13.4101 15.75 14.0402 15.5048 14.5215C15.289 14.9448 14.9448 15.289 14.5215 15.5048C14.0402 15.75 13.4101 15.75 12.15 15.75H5.85C4.58988 15.75 3.95982 15.75 3.47852 15.5048C3.05516 15.289 2.71095 14.9448 2.49524 14.5215C2.25 14.0402 2.25 13.4101 2.25 12.15V9M12 5.25L9 2.25M9 2.25L6 5.25M9 2.25V11.25"
21
+ stroke={color}
22
+ strokeWidth="1.25"
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </Svg>
27
+ );
28
+
29
+ export { Share01Icon };
30
+ export default Share01Icon;