@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,64 @@
1
+ import * as React from "react";
2
+ import { cn } from "../../utils/cn";
3
+
4
+ type MoreOptionsIconProps = React.SVGProps<SVGSVGElement> & {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ ariaLabel?: string;
9
+ };
10
+
11
+ const MoreOptionsIcon: React.FC<MoreOptionsIconProps> = ({
12
+ size = 24,
13
+ color = "currentColor",
14
+ strokeWidth = 2,
15
+ ariaLabel = "More options",
16
+ className,
17
+ ...props
18
+ }) => {
19
+ return (
20
+ <svg
21
+ width={size}
22
+ height={size}
23
+ viewBox="0 0 24 24"
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ role="img"
26
+ aria-label={ariaLabel}
27
+ className={cn("inline-block align-middle", className)}
28
+ {...props}
29
+ >
30
+ {/* Left dot */}
31
+ <circle
32
+ cx="5"
33
+ cy="12"
34
+ r="1"
35
+ stroke={color}
36
+ strokeWidth={strokeWidth}
37
+ strokeLinecap="round"
38
+ strokeLinejoin="round"
39
+ />
40
+ {/* Middle dot */}
41
+ <circle
42
+ cx="12"
43
+ cy="12"
44
+ r="1"
45
+ stroke={color}
46
+ strokeWidth={strokeWidth}
47
+ strokeLinecap="round"
48
+ strokeLinejoin="round"
49
+ />
50
+ {/* Right dot */}
51
+ <circle
52
+ cx="19"
53
+ cy="12"
54
+ r="1"
55
+ stroke={color}
56
+ strokeWidth={strokeWidth}
57
+ strokeLinecap="round"
58
+ strokeLinejoin="round"
59
+ />
60
+ </svg>
61
+ );
62
+ };
63
+
64
+ export default MoreOptionsIcon;
@@ -0,0 +1,32 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
3
+
4
+ interface MoveIconProps {
5
+ size?: number;
6
+ strokeColor?: string;
7
+ }
8
+
9
+ const MoveIcon: React.FC<MoveIconProps> = ({
10
+ size = 17,
11
+ strokeColor = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 17 17" fill="none">
14
+ <G clipPath="url(#clip0_4587_7734)">
15
+ <Path
16
+ d="M3.54297 6.3763L1.41797 8.5013M1.41797 8.5013L3.54297 10.6263M1.41797 8.5013H15.5846M6.3763 3.54297L8.5013 1.41797M8.5013 1.41797L10.6263 3.54297M8.5013 1.41797V15.5846M10.6263 13.4596L8.5013 15.5846M8.5013 15.5846L6.3763 13.4596M13.4596 6.3763L15.5846 8.5013M15.5846 8.5013L13.4596 10.6263"
17
+ stroke={strokeColor}
18
+ strokeWidth={1.5}
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </G>
23
+ <Defs>
24
+ <ClipPath id="clip0_4587_7734">
25
+ <Rect width="17" height="17" fill="white" />
26
+ </ClipPath>
27
+ </Defs>
28
+ </Svg>
29
+ );
30
+
31
+ export { MoveIcon };
32
+ export default MoveIcon;
@@ -0,0 +1,45 @@
1
+ // components/icons/MoveIcon.tsx
2
+ import * as React from "react";
3
+
4
+ interface MoveIconProps extends React.SVGProps<SVGSVGElement> {
5
+ /** Width and height (in pixels). Defaults to 17. */
6
+ size?: number;
7
+ /** Stroke color. Defaults to currentColor so it inherits from text color. */
8
+ strokeColor?: string;
9
+ }
10
+
11
+
12
+
13
+ const MoveIcon: React.FC<MoveIconProps> = ({
14
+ size = 17,
15
+ strokeColor = "currentColor",
16
+ className = "",
17
+ ...props
18
+ }) => (
19
+ <svg
20
+ width={size}
21
+ height={size}
22
+ viewBox="0 0 17 17"
23
+ fill="none"
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ className={className}
26
+ {...props}
27
+ >
28
+ <g clipPath="url(#clip0_4587_7734)">
29
+ <path
30
+ d="M3.54297 6.3763L1.41797 8.5013M1.41797 8.5013L3.54297 10.6263M1.41797 8.5013H15.5846M6.3763 3.54297L8.5013 1.41797M8.5013 1.41797L10.6263 3.54297M8.5013 1.41797V15.5846M10.6263 13.4596L8.5013 15.5846M8.5013 15.5846L6.3763 13.4596M13.4596 6.3763L15.5846 8.5013M15.5846 8.5013L13.4596 10.6263"
31
+ stroke={strokeColor}
32
+ strokeWidth={1.5}
33
+ strokeLinecap="round"
34
+ strokeLinejoin="round"
35
+ />
36
+ </g>
37
+ <defs>
38
+ <clipPath id="clip0_4587_7734">
39
+ <rect width="17" height="17" fill="white" />
40
+ </clipPath>
41
+ </defs>
42
+ </svg>
43
+ );
44
+
45
+ export default MoveIcon;
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface PencilIconProps {
5
+ size?: number;
6
+ strokeWidth?: number;
7
+ stroke?: string;
8
+ }
9
+
10
+ const PencilIcon: React.FC<PencilIconProps> = ({ size = 18, strokeWidth = 1.5, stroke = '#000000' }) => (
11
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
12
+ <Path
13
+ d="M8.99998 15.0012H15.75M2.25 15.0011H3.50591C3.87279 15.0011 4.05624 15.0011 4.22887 14.9597C4.38192 14.923 4.52824 14.8624 4.66245 14.7801C4.81382 14.6873 4.94354 14.5576 5.20296 14.2982L14.625 4.87615C15.2463 4.25483 15.2463 3.24747 14.625 2.62615C14.0037 2.00483 12.9963 2.00483 12.375 2.62615L2.95295 12.0482C2.69352 12.3076 2.5638 12.4373 2.47104 12.5887C2.3888 12.7229 2.32819 12.8692 2.29145 13.0223C2.25 13.1949 2.25 13.3784 2.25 13.7453V15.0011Z"
14
+ stroke={stroke}
15
+ strokeWidth={strokeWidth}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ </Svg>
20
+ );
21
+
22
+ export { PencilIcon };
23
+ export default PencilIcon;
@@ -0,0 +1,29 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ stroke?: string;
8
+ }
9
+
10
+ const PencilIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor", strokeWidth = 1.5, stroke = "currentColor", ...props }) => (
11
+ <svg
12
+ width={size}
13
+ height={size}
14
+ viewBox="0 0 18 18"
15
+ fill="none"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ {...props}
18
+ >
19
+ <path
20
+ d="M8.99998 15.0012H15.75M2.25 15.0011H3.50591C3.87279 15.0011 4.05624 15.0011 4.22887 14.9597C4.38192 14.923 4.52824 14.8624 4.66245 14.7801C4.81382 14.6873 4.94354 14.5576 5.20296 14.2982L14.625 4.87615C15.2463 4.25483 15.2463 3.24747 14.625 2.62615C14.0037 2.00483 12.9963 2.00483 12.375 2.62615L2.95295 12.0482C2.69352 12.3076 2.5638 12.4373 2.47104 12.5887C2.3888 12.7229 2.32819 12.8692 2.29145 13.0223C2.25 13.1949 2.25 13.3784 2.25 13.7453V15.0011Z"
21
+ stroke={stroke}
22
+ strokeWidth={strokeWidth}
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </svg>
27
+ );
28
+
29
+ export default PencilIcon;
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface PlusCircleIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const PlusCircleIcon: React.FC<PlusCircleIconProps> = ({
11
+ size = 28,
12
+ color = '#000000',
13
+ strokeWidth = 2,
14
+ }) => (
15
+ <Svg width={size} height={size} viewBox="0 0 28 28" fill="none">
16
+ <Path
17
+ d="M13.9987 9.33203V18.6654M9.33203 13.9987H18.6654M25.6654 13.9987C25.6654 20.442 20.442 25.6654 13.9987 25.6654C7.55538 25.6654 2.33203 20.442 2.33203 13.9987C2.33203 7.55538 7.55538 2.33203 13.9987 2.33203C20.442 2.33203 25.6654 7.55538 25.6654 13.9987Z"
18
+ stroke={color}
19
+ strokeWidth={strokeWidth}
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+
26
+ export { PlusCircleIcon };
27
+ export default PlusCircleIcon;
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ }
8
+
9
+ const PlusCircleIcon: React.FC<IconProps> = ({
10
+ size = 28,
11
+ color = "currentColor",
12
+ strokeWidth = 2,
13
+ }) => (
14
+ <svg
15
+ width={size}
16
+ height={size}
17
+ viewBox="0 0 28 28"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ >
21
+ <path
22
+ d="M13.9987 9.33203V18.6654M9.33203 13.9987H18.6654M25.6654 13.9987C25.6654 20.442 20.442 25.6654 13.9987 25.6654C7.55538 25.6654 2.33203 20.442 2.33203 13.9987C2.33203 7.55538 7.55538 2.33203 13.9987 2.33203C20.442 2.33203 25.6654 7.55538 25.6654 13.9987Z"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ export default PlusCircleIcon;
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface PlusIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: string;
8
+ }
9
+
10
+ const PlusIcon: React.FC<PlusIconProps> = ({ size = 16, color = '#000000', strokeWidth = '1.25' }) => (
11
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
12
+ <Path
13
+ d="M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673"
14
+ stroke={color}
15
+ strokeWidth={strokeWidth}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ </Svg>
20
+ );
21
+
22
+ export { PlusIcon };
23
+ export default PlusIcon;
@@ -0,0 +1,22 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: string;
7
+ }
8
+
9
+ const PlusIcon: React.FC<IconProps> = ({ size = 16, color = "currentColor", strokeWidth = "1.25" }) => (
10
+ <svg width={size} height={size} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
11
+ <path
12
+ d="M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673"
13
+ stroke={color}
14
+ strokeWidth={strokeWidth}
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+
18
+ />
19
+ </svg>
20
+ );
21
+
22
+ export default PlusIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface RefreshIconProps {
5
+ width?: number;
6
+ height?: number;
7
+ stroke?: string;
8
+ }
9
+
10
+ export const RefreshIcon: React.FC<RefreshIconProps> = ({
11
+ width = 24,
12
+ height = 24,
13
+ stroke = '#000000',
14
+ }) => (
15
+ <Svg width={width} height={height} viewBox="0 0 24 24" fill="none" stroke={stroke}>
16
+ <Path
17
+ d="M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8"
18
+ strokeWidth={2}
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </Svg>
23
+ );
24
+
25
+ export default RefreshIcon;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+
3
+ interface RefreshIconProps extends React.SVGProps<SVGSVGElement> {}
4
+
5
+ export const RefreshIcon: React.FC<RefreshIconProps> = ({
6
+ width = 24,
7
+ height = 24,
8
+ stroke = "currentColor",
9
+ className,
10
+ ...props
11
+ }) => (
12
+ <svg
13
+ width={width}
14
+ height={height}
15
+ viewBox="0 0 24 24"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ stroke={stroke}
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8"
24
+ strokeWidth={2}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type ResetIconProps = {
5
+ size?: number;
6
+ color?: string;
7
+ };
8
+
9
+ const ResetIcon: React.FC<ResetIconProps> = ({
10
+ size = 18,
11
+ color = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
14
+ <Path
15
+ d="M1.5 7.5C1.5 7.5 3.00374 5.45116 4.22538 4.22868C5.44702 3.0062 7.1352 2.25 9 2.25C12.7279 2.25 15.75 5.27208 15.75 9C15.75 12.7279 12.7279 15.75 9 15.75C5.92268 15.75 3.32633 13.6907 2.51382 10.875M1.5 7.5V3M1.5 7.5H6"
16
+ stroke={color}
17
+ strokeWidth={1.5}
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { ResetIcon };
25
+ export default ResetIcon;
@@ -0,0 +1,36 @@
1
+ // components/icons/ResetIcon.tsx
2
+ import React from "react";
3
+
4
+ type ResetIconProps = {
5
+ /** Width and height of the icon (px) */
6
+ size?: number;
7
+ /** Stroke color; defaults to current text color */
8
+ color?: string;
9
+ /** Additional Tailwind or custom classes */
10
+ className?: string;
11
+ };
12
+
13
+ const ResetIcon: React.FC<ResetIconProps> = ({
14
+ size = 18,
15
+ color = "currentColor",
16
+ className = "",
17
+ }) => (
18
+ <svg
19
+ width={size}
20
+ height={size}
21
+ viewBox="0 0 18 18"
22
+ fill="none"
23
+ className={className}
24
+ xmlns="http://www.w3.org/2000/svg"
25
+ >
26
+ <path
27
+ d="M1.5 7.5C1.5 7.5 3.00374 5.45116 4.22538 4.22868C5.44702 3.0062 7.1352 2.25 9 2.25C12.7279 2.25 15.75 5.27208 15.75 9C15.75 12.7279 12.7279 15.75 9 15.75C5.92268 15.75 3.32633 13.6907 2.51382 10.875M1.5 7.5V3M1.5 7.5H6"
28
+ stroke={color}
29
+ strokeWidth={1.5}
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ );
35
+
36
+ export default React.memo(ResetIcon);
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SettingsIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const SettingsIcon: React.FC<SettingsIconProps> = ({ size = 18, color = '#000000' }) => (
10
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
11
+ <Path
12
+ d="M7.04775 14.5283L7.48608 15.5142C7.61638 15.8076 7.82904 16.057 8.09825 16.232C8.36746 16.4069 8.68166 16.5001 9.00275 16.5C9.32383 16.5001 9.63803 16.4069 9.90724 16.232C10.1765 16.057 10.3891 15.8076 10.5194 15.5142L10.9577 14.5283C11.1138 14.1785 11.3763 13.8869 11.7077 13.695C12.0413 13.5026 12.4272 13.4206 12.8102 13.4608L13.8827 13.575C14.202 13.6088 14.5242 13.5492 14.8103 13.4035C15.0963 13.2578 15.334 13.0322 15.4944 12.7542C15.655 12.4763 15.7316 12.1577 15.7147 11.8372C15.6978 11.5166 15.5883 11.2079 15.3994 10.9483L14.7644 10.0758C14.5383 9.76285 14.4175 9.38611 14.4194 9C14.4193 8.61494 14.5413 8.23976 14.7677 7.92833L15.4027 7.05583C15.5917 6.79632 15.7012 6.48755 15.718 6.16701C15.7349 5.84646 15.6584 5.52791 15.4977 5.25C15.3373 4.97193 15.0997 4.74637 14.8136 4.60067C14.5275 4.45497 14.2053 4.3954 13.8861 4.42917L12.8136 4.54333C12.4306 4.58356 12.0447 4.50159 11.7111 4.30917C11.3789 4.11619 11.1164 3.82302 10.9611 3.47167L10.5194 2.48583C10.3891 2.19238 10.1765 1.94304 9.90724 1.76805C9.63803 1.59306 9.32383 1.49995 9.00275 1.5C8.68166 1.49995 8.36746 1.59306 8.09825 1.76805C7.82904 1.94304 7.61638 2.19238 7.48608 2.48583L7.04775 3.47167C6.89244 3.82302 6.6299 4.11619 6.29775 4.30917C5.96416 4.50159 5.57825 4.58356 5.19525 4.54333L4.11941 4.42917C3.80016 4.3954 3.47797 4.45497 3.1919 4.60067C2.90583 4.74637 2.66817 4.97193 2.50775 5.25C2.34711 5.52791 2.27058 5.84646 2.28745 6.16701C2.30431 6.48755 2.41384 6.79632 2.60275 7.05583L3.23775 7.92833C3.4642 8.23976 3.58615 8.61494 3.58608 9C3.58615 9.38506 3.4642 9.76024 3.23775 10.0717L2.60275 10.9442C2.41384 11.2037 2.30431 11.5124 2.28745 11.833C2.27058 12.1535 2.34711 12.4721 2.50775 12.75C2.66833 13.0279 2.90602 13.2534 3.19204 13.399C3.47807 13.5447 3.80018 13.6044 4.11941 13.5708L5.19191 13.4567C5.57491 13.4164 5.96082 13.4984 6.29441 13.6908C6.62781 13.8833 6.89157 14.1765 7.04775 14.5283Z"
13
+ stroke={color}
14
+ strokeWidth="1.5"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <Path
19
+ d="M9.00141 11.25C10.244 11.25 11.2514 10.2426 11.2514 9C11.2514 7.75736 10.244 6.75 9.00141 6.75C7.75877 6.75 6.75141 7.75736 6.75141 9C6.75141 10.2426 7.75877 11.25 9.00141 11.25Z"
20
+ stroke={color}
21
+ strokeWidth="1.5"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </Svg>
26
+ );
27
+
28
+ export { SettingsIcon };
29
+ export default SettingsIcon;
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const SettingsIcon: 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
+ <path
17
+ d="M7.04775 14.5283L7.48608 15.5142C7.61638 15.8076 7.82904 16.057 8.09825 16.232C8.36746 16.4069 8.68166 16.5001 9.00275 16.5C9.32383 16.5001 9.63803 16.4069 9.90724 16.232C10.1765 16.057 10.3891 15.8076 10.5194 15.5142L10.9577 14.5283C11.1138 14.1785 11.3763 13.8869 11.7077 13.695C12.0413 13.5026 12.4272 13.4206 12.8102 13.4608L13.8827 13.575C14.202 13.6088 14.5242 13.5492 14.8103 13.4035C15.0963 13.2578 15.334 13.0322 15.4944 12.7542C15.655 12.4763 15.7316 12.1577 15.7147 11.8372C15.6978 11.5166 15.5883 11.2079 15.3994 10.9483L14.7644 10.0758C14.5383 9.76285 14.4175 9.38611 14.4194 9C14.4193 8.61494 14.5413 8.23976 14.7677 7.92833L15.4027 7.05583C15.5917 6.79632 15.7012 6.48755 15.718 6.16701C15.7349 5.84646 15.6584 5.52791 15.4977 5.25C15.3373 4.97193 15.0997 4.74637 14.8136 4.60067C14.5275 4.45497 14.2053 4.3954 13.8861 4.42917L12.8136 4.54333C12.4306 4.58356 12.0447 4.50159 11.7111 4.30917C11.3789 4.11619 11.1164 3.82302 10.9611 3.47167L10.5194 2.48583C10.3891 2.19238 10.1765 1.94304 9.90724 1.76805C9.63803 1.59306 9.32383 1.49995 9.00275 1.5C8.68166 1.49995 8.36746 1.59306 8.09825 1.76805C7.82904 1.94304 7.61638 2.19238 7.48608 2.48583L7.04775 3.47167C6.89244 3.82302 6.6299 4.11619 6.29775 4.30917C5.96416 4.50159 5.57825 4.58356 5.19525 4.54333L4.11941 4.42917C3.80016 4.3954 3.47797 4.45497 3.1919 4.60067C2.90583 4.74637 2.66817 4.97193 2.50775 5.25C2.34711 5.52791 2.27058 5.84646 2.28745 6.16701C2.30431 6.48755 2.41384 6.79632 2.60275 7.05583L3.23775 7.92833C3.4642 8.23976 3.58615 8.61494 3.58608 9C3.58615 9.38506 3.4642 9.76024 3.23775 10.0717L2.60275 10.9442C2.41384 11.2037 2.30431 11.5124 2.28745 11.833C2.27058 12.1535 2.34711 12.4721 2.50775 12.75C2.66833 13.0279 2.90602 13.2534 3.19204 13.399C3.47807 13.5447 3.80018 13.6044 4.11941 13.5708L5.19191 13.4567C5.57491 13.4164 5.96082 13.4984 6.29441 13.6908C6.62781 13.8833 6.89157 14.1765 7.04775 14.5283Z"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ <path
24
+ d="M9.00141 11.25C10.244 11.25 11.2514 10.2426 11.2514 9C11.2514 7.75736 10.244 6.75 9.00141 6.75C7.75877 6.75 6.75141 7.75736 6.75141 9C6.75141 10.2426 7.75877 11.25 9.00141 11.25Z"
25
+ stroke={color}
26
+ strokeWidth="1.5"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ </svg>
31
+ );
32
+
33
+ export default SettingsIcon;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SlidersIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const SlidersIcon: React.FC<SlidersIconProps> = ({
10
+ size = 18,
11
+ color = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
14
+ <Path
15
+ d="M2.25 4.5H6M6 4.5C6 5.32843 6.67157 6 7.5 6C8.32843 6 9 5.32843 9 4.5C9 3.67157 8.32843 3 7.5 3C6.67157 3 6 3.67157 6 4.5ZM2.25 13.5H10.5M10.5 13.5C10.5 14.3284 11.1716 15 12 15C12.8284 15 13.5 14.3284 13.5 13.5C13.5 12.6716 12.8284 12 12 12C11.1716 12 10.5 12.6716 10.5 13.5ZM13.5 13.5H15.75M9 4.5H15.75M2.25 9H12M12 9C12 9.82843 12.6716 10.5 13.5 10.5C14.3284 10.5 15 9.82843 15 9C15 8.17157 14.3284 7.5 13.5 7.5C12.6716 7.5 12 8.17157 12 9Z"
16
+ stroke={color}
17
+ strokeWidth="1.5"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { SlidersIcon };
25
+ export default SlidersIcon;
@@ -0,0 +1,29 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const SlidersIcon: React.FC<IconProps> = ({
9
+ size = 18,
10
+ color = "currentColor",
11
+ }) => (
12
+ <svg
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 18 18"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ >
19
+ <path
20
+ d="M2.25 4.5H6M6 4.5C6 5.32843 6.67157 6 7.5 6C8.32843 6 9 5.32843 9 4.5C9 3.67157 8.32843 3 7.5 3C6.67157 3 6 3.67157 6 4.5ZM2.25 13.5H10.5M10.5 13.5C10.5 14.3284 11.1716 15 12 15C12.8284 15 13.5 14.3284 13.5 13.5C13.5 12.6716 12.8284 12 12 12C11.1716 12 10.5 12.6716 10.5 13.5ZM13.5 13.5H15.75M9 4.5H15.75M2.25 9H12M12 9C12 9.82843 12.6716 10.5 13.5 10.5C14.3284 10.5 15 9.82843 15 9C15 8.17157 14.3284 7.5 13.5 7.5C12.6716 7.5 12 8.17157 12 9Z"
21
+ stroke={color}
22
+ strokeWidth="1.5"
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </svg>
27
+ );
28
+
29
+ export default SlidersIcon;
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SmallMagnifyIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const SmallMagnifyIcon: React.FC<SmallMagnifyIconProps> = ({
11
+ size = 14,
12
+ color = '#000000',
13
+ strokeWidth = 1.5,
14
+ }) => (
15
+ <Svg width={size} height={size} viewBox="0 0 14 14" fill="none">
16
+ <Path
17
+ d="M12.25 12.25L9.7125 9.7125M11.0833 6.41667C11.0833 8.994 8.994 11.0833 6.41667 11.0833C3.83934 11.0833 1.75 8.994 1.75 6.41667C1.75 3.83934 3.83934 1.75 6.41667 1.75C8.994 1.75 11.0833 3.83934 11.0833 6.41667Z"
18
+ stroke={color}
19
+ strokeWidth={strokeWidth}
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+
26
+ export { SmallMagnifyIcon };
27
+ export default SmallMagnifyIcon;
@@ -0,0 +1,34 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ className?: string;
8
+ }
9
+
10
+ const SmallMagnifyIcon: React.FC<IconProps> = ({
11
+ size = 14,
12
+ color = "currentColor",
13
+ strokeWidth = 1.5,
14
+ className,
15
+ }) => (
16
+ <svg
17
+ width={size}
18
+ height={size}
19
+ viewBox="0 0 14 14"
20
+ fill="none"
21
+ className={className}
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ >
24
+ <path
25
+ d="M12.25 12.25L9.7125 9.7125M11.0833 6.41667C11.0833 8.994 8.994 11.0833 6.41667 11.0833C3.83934 11.0833 1.75 8.994 1.75 6.41667C1.75 3.83934 3.83934 1.75 6.41667 1.75C8.994 1.75 11.0833 3.83934 11.0833 6.41667Z"
26
+ stroke={color}
27
+ strokeWidth={strokeWidth}
28
+ strokeLinecap="round"
29
+ strokeLinejoin="round"
30
+ />
31
+ </svg>
32
+ );
33
+
34
+ export default SmallMagnifyIcon;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type Trash02IconProps = {
5
+ color?: string;
6
+ size?: number;
7
+ };
8
+
9
+ const Trash02Icon: React.FC<Trash02IconProps> = ({
10
+ color = '#000000',
11
+ size = 18,
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
14
+ <Path
15
+ d="M12 4.5V3.9C12 3.05992 12 2.63988 11.8365 2.31901C11.6927 2.03677 11.4632 1.8073 11.181 1.66349C10.8601 1.5 10.4401 1.5 9.6 1.5H8.4C7.55992 1.5 7.13988 1.5 6.81901 1.66349C6.53677 1.8073 6.3073 2.03677 6.16349 2.31901C6 2.63988 6 3.05992 6 3.9V4.5M2.25 4.5H15.75M14.25 4.5V12.9C14.25 14.1601 14.25 14.7902 14.0048 15.2715C13.789 15.6948 13.4448 16.039 13.0215 16.2548C12.5402 16.5 11.9101 16.5 10.65 16.5H7.35C6.08988 16.5 5.45982 16.5 4.97852 16.2548C4.55516 16.039 4.21095 15.6948 3.99524 15.2715C3.75 14.7902 3.75 14.1601 3.75 12.9V4.5"
16
+ stroke={color}
17
+ strokeWidth="1.5"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { Trash02Icon };
25
+ export default Trash02Icon;
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+
3
+ type Trash02IconProps = React.SVGProps<SVGSVGElement> & {
4
+ color?: string;
5
+ size?: number;
6
+ };
7
+
8
+ const Trash02Icon: React.FC<Trash02IconProps> = ({
9
+ color = "currentColor",
10
+ size = 18,
11
+ className,
12
+ ...props
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
+ {...props}
22
+ >
23
+ <path
24
+ d="M12 4.5V3.9C12 3.05992 12 2.63988 11.8365 2.31901C11.6927 2.03677 11.4632 1.8073 11.181 1.66349C10.8601 1.5 10.4401 1.5 9.6 1.5H8.4C7.55992 1.5 7.13988 1.5 6.81901 1.66349C6.53677 1.8073 6.3073 2.03677 6.16349 2.31901C6 2.63988 6 3.05992 6 3.9V4.5M2.25 4.5H15.75M14.25 4.5V12.9C14.25 14.1601 14.25 14.7902 14.0048 15.2715C13.789 15.6948 13.4448 16.039 13.0215 16.2548C12.5402 16.5 11.9101 16.5 10.65 16.5H7.35C6.08988 16.5 5.45982 16.5 4.97852 16.2548C4.55516 16.039 4.21095 15.6948 3.99524 15.2715C3.75 14.7902 3.75 14.1601 3.75 12.9V4.5"
25
+ stroke={color}
26
+ strokeWidth="1.5"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ </svg>
31
+ );
32
+
33
+ export default Trash02Icon;