@postal-music/icons 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (363) hide show
  1. package/dist/index.js +4909 -0
  2. package/dist/index.js.map +1 -0
  3. package/dist/index.mjs +4744 -0
  4. package/dist/index.mjs.map +1 -0
  5. package/dist/index.native.js +4155 -0
  6. package/dist/index.native.js.map +1 -0
  7. package/dist/index.native.mjs +3959 -0
  8. package/dist/index.native.mjs.map +1 -0
  9. package/package.json +46 -0
  10. package/src/icons/_icon-props.ts +7 -0
  11. package/src/icons/actions/CheckIcon.native.tsx +27 -0
  12. package/src/icons/actions/CheckIcon.web.tsx +31 -0
  13. package/src/icons/actions/Copy02Icon.native.tsx +23 -0
  14. package/src/icons/actions/Copy02Icon.web.tsx +29 -0
  15. package/src/icons/actions/Copy06Icon.native.tsx +27 -0
  16. package/src/icons/actions/Copy06Icon.web.tsx +40 -0
  17. package/src/icons/actions/CopyIcon.native.tsx +23 -0
  18. package/src/icons/actions/CopyIcon.web.tsx +22 -0
  19. package/src/icons/actions/Expand01Icon.native.tsx +27 -0
  20. package/src/icons/actions/Expand01Icon.web.tsx +33 -0
  21. package/src/icons/actions/LogoutIcon.native.tsx +27 -0
  22. package/src/icons/actions/LogoutIcon.web.tsx +31 -0
  23. package/src/icons/actions/MinCircleIcon.native.tsx +29 -0
  24. package/src/icons/actions/MinCircleIcon.web.tsx +34 -0
  25. package/src/icons/actions/MinimiseIcon.native.tsx +27 -0
  26. package/src/icons/actions/MinimiseIcon.web.tsx +33 -0
  27. package/src/icons/actions/MinusIcon.native.tsx +22 -0
  28. package/src/icons/actions/MinusIcon.web.tsx +26 -0
  29. package/src/icons/actions/MoreOptionsIcon.native.tsx +49 -0
  30. package/src/icons/actions/MoreOptionsIcon.web.tsx +64 -0
  31. package/src/icons/actions/MoveIcon.native.tsx +32 -0
  32. package/src/icons/actions/MoveIcon.web.tsx +45 -0
  33. package/src/icons/actions/PencilIcon.native.tsx +23 -0
  34. package/src/icons/actions/PencilIcon.web.tsx +29 -0
  35. package/src/icons/actions/PlusCircleIcon.native.tsx +27 -0
  36. package/src/icons/actions/PlusCircleIcon.web.tsx +31 -0
  37. package/src/icons/actions/PlusIcon.native.tsx +23 -0
  38. package/src/icons/actions/PlusIcon.web.tsx +22 -0
  39. package/src/icons/actions/RefreshIcon.native.tsx +25 -0
  40. package/src/icons/actions/RefreshIcon.web.tsx +29 -0
  41. package/src/icons/actions/ResetIcon.native.tsx +25 -0
  42. package/src/icons/actions/ResetIcon.web.tsx +36 -0
  43. package/src/icons/actions/SettingsIcon.native.tsx +29 -0
  44. package/src/icons/actions/SettingsIcon.web.tsx +33 -0
  45. package/src/icons/actions/SlidersIcon.native.tsx +25 -0
  46. package/src/icons/actions/SlidersIcon.web.tsx +29 -0
  47. package/src/icons/actions/SmallMagnifyIcon.native.tsx +27 -0
  48. package/src/icons/actions/SmallMagnifyIcon.web.tsx +34 -0
  49. package/src/icons/actions/Trash02Icon.native.tsx +25 -0
  50. package/src/icons/actions/Trash02Icon.web.tsx +33 -0
  51. package/src/icons/actions/TrashIcon.native.tsx +22 -0
  52. package/src/icons/actions/TrashIcon.web.tsx +22 -0
  53. package/src/icons/actions/XIcon.native.tsx +23 -0
  54. package/src/icons/actions/XIcon.web.tsx +21 -0
  55. package/src/icons/actions/index.ts +22 -0
  56. package/src/icons/alerts/AlertTriangleIcon.native.tsx +32 -0
  57. package/src/icons/alerts/AlertTriangleIcon.web.tsx +49 -0
  58. package/src/icons/alerts/BellIcon.native.tsx +23 -0
  59. package/src/icons/alerts/BellIcon.web.tsx +27 -0
  60. package/src/icons/alerts/CheckCircleIcon.native.tsx +28 -0
  61. package/src/icons/alerts/CheckCircleIcon.web.tsx +44 -0
  62. package/src/icons/alerts/InfoCircleIcon.native.tsx +32 -0
  63. package/src/icons/alerts/InfoCircleIcon.web.tsx +40 -0
  64. package/src/icons/alerts/InfoIcon.native.tsx +30 -0
  65. package/src/icons/alerts/InfoIcon.web.tsx +34 -0
  66. package/src/icons/alerts/InfoSquareIcon.native.tsx +25 -0
  67. package/src/icons/alerts/InfoSquareIcon.web.tsx +31 -0
  68. package/src/icons/alerts/SlashCircleIcon.native.tsx +36 -0
  69. package/src/icons/alerts/SlashCircleIcon.web.tsx +47 -0
  70. package/src/icons/alerts/XCircleIcon.native.tsx +28 -0
  71. package/src/icons/alerts/XCircleIcon.web.tsx +50 -0
  72. package/src/icons/alerts/index.ts +8 -0
  73. package/src/icons/arrows/ArrowDownIcon.native.tsx +29 -0
  74. package/src/icons/arrows/ArrowDownIcon.web.tsx +31 -0
  75. package/src/icons/arrows/ArrowLeftIcon.native.tsx +32 -0
  76. package/src/icons/arrows/ArrowLeftIcon.web.tsx +31 -0
  77. package/src/icons/arrows/ArrowRightIcon.native.tsx +26 -0
  78. package/src/icons/arrows/ArrowRightIcon.web.tsx +31 -0
  79. package/src/icons/arrows/ArrowUp01Icon.native.tsx +30 -0
  80. package/src/icons/arrows/ArrowUp01Icon.web.tsx +53 -0
  81. package/src/icons/arrows/ArrowUpIcon.native.tsx +32 -0
  82. package/src/icons/arrows/ArrowUpIcon.web.tsx +29 -0
  83. package/src/icons/arrows/ChevronLeftIcon.native.tsx +32 -0
  84. package/src/icons/arrows/ChevronLeftIcon.web.tsx +31 -0
  85. package/src/icons/arrows/ChevronSelectorIcon.native.tsx +32 -0
  86. package/src/icons/arrows/ChevronSelectorIcon.web.tsx +33 -0
  87. package/src/icons/arrows/NarrowUpRightIcon.native.tsx +28 -0
  88. package/src/icons/arrows/NarrowUpRightIcon.web.tsx +29 -0
  89. package/src/icons/arrows/SwitchHorizontal02Icon.native.tsx +28 -0
  90. package/src/icons/arrows/SwitchHorizontal02Icon.web.tsx +39 -0
  91. package/src/icons/arrows/UTurnIcon.native.tsx +28 -0
  92. package/src/icons/arrows/UTurnIcon.web.tsx +32 -0
  93. package/src/icons/arrows/index.ts +10 -0
  94. package/src/icons/brand/InstagramWhiteIcon.native.tsx +39 -0
  95. package/src/icons/brand/InstagramWhiteIcon.web.tsx +79 -0
  96. package/src/icons/brand/PostalIcon.native.tsx +26 -0
  97. package/src/icons/brand/PostalIcon.web.tsx +29 -0
  98. package/src/icons/brand/index.ts +2 -0
  99. package/src/icons/charts/BarChart01Icon.native.tsx +25 -0
  100. package/src/icons/charts/BarChart01Icon.web.tsx +34 -0
  101. package/src/icons/charts/BarChart10Icon.native.tsx +23 -0
  102. package/src/icons/charts/BarChart10Icon.web.tsx +31 -0
  103. package/src/icons/charts/LineChart03UpIcon.native.tsx +23 -0
  104. package/src/icons/charts/LineChart03UpIcon.web.tsx +31 -0
  105. package/src/icons/charts/index.ts +3 -0
  106. package/src/icons/communication/AnnotationInfoIcon.native.tsx +30 -0
  107. package/src/icons/communication/AnnotationInfoIcon.web.tsx +38 -0
  108. package/src/icons/communication/ChatBubbleDotIcon.native.tsx +31 -0
  109. package/src/icons/communication/ChatBubbleDotIcon.web.tsx +31 -0
  110. package/src/icons/communication/ChatBubbleIcon.native.tsx +30 -0
  111. package/src/icons/communication/ChatBubbleIcon.web.tsx +37 -0
  112. package/src/icons/communication/MailIcon.native.tsx +36 -0
  113. package/src/icons/communication/MailIcon.web.tsx +37 -0
  114. package/src/icons/communication/MessageSquareTextIcon.native.tsx +30 -0
  115. package/src/icons/communication/MessageSquareTextIcon.web.tsx +41 -0
  116. package/src/icons/communication/MessageTextCircle01Icon.native.tsx +29 -0
  117. package/src/icons/communication/MessageTextCircle01Icon.web.tsx +32 -0
  118. package/src/icons/communication/NotificationTextIcon.native.tsx +21 -0
  119. package/src/icons/communication/NotificationTextIcon.web.tsx +24 -0
  120. package/src/icons/communication/SendIcon.native.tsx +28 -0
  121. package/src/icons/communication/SendIcon.web.tsx +33 -0
  122. package/src/icons/communication/index.ts +8 -0
  123. package/src/icons/files/CameraIcon.native.tsx +30 -0
  124. package/src/icons/files/CameraIcon.web.tsx +31 -0
  125. package/src/icons/files/Download02Icon.native.tsx +30 -0
  126. package/src/icons/files/Download02Icon.web.tsx +31 -0
  127. package/src/icons/files/Download03Icon.native.tsx +32 -0
  128. package/src/icons/files/Download03Icon.web.tsx +33 -0
  129. package/src/icons/files/Download04Icon.native.tsx +34 -0
  130. package/src/icons/files/Download04Icon.web.tsx +58 -0
  131. package/src/icons/files/DownloadCircleIcon.native.tsx +30 -0
  132. package/src/icons/files/DownloadCircleIcon.web.tsx +39 -0
  133. package/src/icons/files/DownloadIcon.native.tsx +28 -0
  134. package/src/icons/files/DownloadIcon.web.tsx +30 -0
  135. package/src/icons/files/File02Icon.native.tsx +28 -0
  136. package/src/icons/files/File02Icon.web.tsx +30 -0
  137. package/src/icons/files/FileDownload02Icon.native.tsx +30 -0
  138. package/src/icons/files/FileDownload02Icon.web.tsx +31 -0
  139. package/src/icons/files/FolderGradientIcon.native.tsx +43 -0
  140. package/src/icons/files/FolderGradientIcon.web.tsx +47 -0
  141. package/src/icons/files/FolderIcon.native.tsx +28 -0
  142. package/src/icons/files/FolderIcon.web.tsx +27 -0
  143. package/src/icons/files/FolderPlusIcon.native.tsx +34 -0
  144. package/src/icons/files/FolderPlusIcon.web.tsx +89 -0
  145. package/src/icons/files/Upload01Icon.native.tsx +32 -0
  146. package/src/icons/files/Upload01Icon.web.tsx +84 -0
  147. package/src/icons/files/UploadCloudIcon.native.tsx +27 -0
  148. package/src/icons/files/UploadCloudIcon.web.tsx +28 -0
  149. package/src/icons/files/UploadIcon.native.tsx +29 -0
  150. package/src/icons/files/UploadIcon.web.tsx +34 -0
  151. package/src/icons/files/index.ts +14 -0
  152. package/src/icons/finance/BankNote03Icon.native.tsx +35 -0
  153. package/src/icons/finance/BankNote03Icon.web.tsx +65 -0
  154. package/src/icons/finance/CoinsStacked03Icon.native.tsx +37 -0
  155. package/src/icons/finance/CoinsStacked03Icon.web.tsx +71 -0
  156. package/src/icons/finance/CreditCardIcon.native.tsx +22 -0
  157. package/src/icons/finance/CreditCardIcon.web.tsx +27 -0
  158. package/src/icons/finance/index.ts +3 -0
  159. package/src/icons/general/ActivityIcon.native.tsx +28 -0
  160. package/src/icons/general/ActivityIcon.web.tsx +38 -0
  161. package/src/icons/general/BookIcon.native.tsx +27 -0
  162. package/src/icons/general/BookIcon.web.tsx +26 -0
  163. package/src/icons/general/BookmarkIcon.native.tsx +32 -0
  164. package/src/icons/general/BookmarkIcon.web.tsx +36 -0
  165. package/src/icons/general/CollaborativeIcon.native.tsx +32 -0
  166. package/src/icons/general/CollaborativeIcon.web.tsx +31 -0
  167. package/src/icons/general/DataIcon.native.tsx +35 -0
  168. package/src/icons/general/DataIcon.web.tsx +51 -0
  169. package/src/icons/general/Dataflow03Icon.native.tsx +35 -0
  170. package/src/icons/general/Dataflow03Icon.web.tsx +53 -0
  171. package/src/icons/general/Datapoints01Icon.native.tsx +44 -0
  172. package/src/icons/general/Datapoints01Icon.web.tsx +44 -0
  173. package/src/icons/general/DropBoxIcon.native.tsx +42 -0
  174. package/src/icons/general/DropBoxIcon.web.tsx +55 -0
  175. package/src/icons/general/FaceSmileIcon.native.tsx +39 -0
  176. package/src/icons/general/FaceSmileIcon.web.tsx +65 -0
  177. package/src/icons/general/Flag01Icon.native.tsx +30 -0
  178. package/src/icons/general/Flag01Icon.web.tsx +32 -0
  179. package/src/icons/general/Globe02Icon.native.tsx +37 -0
  180. package/src/icons/general/Globe02Icon.web.tsx +38 -0
  181. package/src/icons/general/Globe05Icon.native.tsx +32 -0
  182. package/src/icons/general/Globe05Icon.web.tsx +36 -0
  183. package/src/icons/general/GlobeIcon.native.tsx +47 -0
  184. package/src/icons/general/GlobeIcon.web.tsx +48 -0
  185. package/src/icons/general/Hash02Icon.native.tsx +25 -0
  186. package/src/icons/general/Hash02Icon.web.tsx +24 -0
  187. package/src/icons/general/HeartIcon.native.tsx +35 -0
  188. package/src/icons/general/HeartIcon.web.tsx +38 -0
  189. package/src/icons/general/HelpIcon.native.tsx +35 -0
  190. package/src/icons/general/HelpIcon.web.tsx +33 -0
  191. package/src/icons/general/Image01Icon.native.tsx +24 -0
  192. package/src/icons/general/Image01Icon.web.tsx +26 -0
  193. package/src/icons/general/Image03Icon.native.tsx +40 -0
  194. package/src/icons/general/Image03Icon.web.tsx +51 -0
  195. package/src/icons/general/ImageIcon.native.tsx +34 -0
  196. package/src/icons/general/ImageIcon.web.tsx +39 -0
  197. package/src/icons/general/LandingCollaborativeIcon.native.tsx +27 -0
  198. package/src/icons/general/LandingCollaborativeIcon.web.tsx +26 -0
  199. package/src/icons/general/LandingControlsIcon.native.tsx +27 -0
  200. package/src/icons/general/LandingControlsIcon.web.tsx +26 -0
  201. package/src/icons/general/LandingMusicIcon.native.tsx +32 -0
  202. package/src/icons/general/LandingMusicIcon.web.tsx +31 -0
  203. package/src/icons/general/LandingShareIcon.native.tsx +27 -0
  204. package/src/icons/general/LandingShareIcon.web.tsx +26 -0
  205. package/src/icons/general/LandingUploadIcon.native.tsx +27 -0
  206. package/src/icons/general/LandingUploadIcon.web.tsx +26 -0
  207. package/src/icons/general/LayersThree01Icon.native.tsx +28 -0
  208. package/src/icons/general/LayersThree01Icon.web.tsx +31 -0
  209. package/src/icons/general/LyricsIcon.native.tsx +40 -0
  210. package/src/icons/general/LyricsIcon.web.tsx +41 -0
  211. package/src/icons/general/MoonIcon.native.tsx +34 -0
  212. package/src/icons/general/MoonIcon.web.tsx +33 -0
  213. package/src/icons/general/MusicNoteIcon.native.tsx +32 -0
  214. package/src/icons/general/MusicNoteIcon.web.tsx +35 -0
  215. package/src/icons/general/PinIcon.native.tsx +37 -0
  216. package/src/icons/general/PinIcon.web.tsx +49 -0
  217. package/src/icons/general/QuestionCircleIcon.native.tsx +34 -0
  218. package/src/icons/general/QuestionCircleIcon.web.tsx +33 -0
  219. package/src/icons/general/Recordering01.native.tsx +28 -0
  220. package/src/icons/general/Recordering01.web.tsx +39 -0
  221. package/src/icons/general/Share01Icon.native.tsx +30 -0
  222. package/src/icons/general/Share01Icon.web.tsx +32 -0
  223. package/src/icons/general/ShareIcon.native.tsx +28 -0
  224. package/src/icons/general/ShareIcon.web.tsx +33 -0
  225. package/src/icons/general/StarIcon.native.tsx +36 -0
  226. package/src/icons/general/StarIcon.web.tsx +30 -0
  227. package/src/icons/general/Stars01Icon.native.tsx +56 -0
  228. package/src/icons/general/Stars01Icon.web.tsx +66 -0
  229. package/src/icons/general/Stars02Icon.native.tsx +40 -0
  230. package/src/icons/general/Stars02Icon.web.tsx +66 -0
  231. package/src/icons/general/Stars04Icon.native.tsx +37 -0
  232. package/src/icons/general/Stars04Icon.web.tsx +39 -0
  233. package/src/icons/general/Stars06Icon.native.tsx +37 -0
  234. package/src/icons/general/Stars06Icon.web.tsx +38 -0
  235. package/src/icons/general/TagsIcon.native.tsx +26 -0
  236. package/src/icons/general/TagsIcon.web.tsx +29 -0
  237. package/src/icons/general/ThumbsDownIcon.native.tsx +28 -0
  238. package/src/icons/general/ThumbsDownIcon.web.tsx +37 -0
  239. package/src/icons/general/Type01Icon.native.tsx +34 -0
  240. package/src/icons/general/Type01Icon.web.tsx +33 -0
  241. package/src/icons/general/index.ts +41 -0
  242. package/src/icons/index.ts +15 -0
  243. package/src/icons/media/10SecondsBackIcon.native.tsx +37 -0
  244. package/src/icons/media/10SecondsBackIcon.web.tsx +41 -0
  245. package/src/icons/media/EqualizerIcon.native.tsx +25 -0
  246. package/src/icons/media/EqualizerIcon.web.tsx +31 -0
  247. package/src/icons/media/HeadPhonesIcon.native.tsx +35 -0
  248. package/src/icons/media/HeadPhonesIcon.web.tsx +39 -0
  249. package/src/icons/media/MediaUploadIcon.native.tsx +39 -0
  250. package/src/icons/media/MediaUploadIcon.web.tsx +43 -0
  251. package/src/icons/media/NextTrackIcon.native.tsx +30 -0
  252. package/src/icons/media/NextTrackIcon.web.tsx +39 -0
  253. package/src/icons/media/PauseIcon.native.tsx +34 -0
  254. package/src/icons/media/PauseIcon.web.tsx +35 -0
  255. package/src/icons/media/PlayIcon.native.tsx +29 -0
  256. package/src/icons/media/PlayIcon.web.tsx +28 -0
  257. package/src/icons/media/PlaySquareIcon.native.tsx +38 -0
  258. package/src/icons/media/PlaySquareIcon.web.tsx +47 -0
  259. package/src/icons/media/PreviousTrackIcon.native.tsx +30 -0
  260. package/src/icons/media/PreviousTrackIcon.web.tsx +40 -0
  261. package/src/icons/media/Repeat01Icon.native.tsx +29 -0
  262. package/src/icons/media/Repeat01Icon.web.tsx +32 -0
  263. package/src/icons/media/Repeat02Icon.native.tsx +28 -0
  264. package/src/icons/media/Repeat02Icon.web.tsx +33 -0
  265. package/src/icons/media/Repeat03Icon.native.tsx +37 -0
  266. package/src/icons/media/Repeat03Icon.web.tsx +41 -0
  267. package/src/icons/media/Shuffle01Icon.native.tsx +34 -0
  268. package/src/icons/media/Shuffle01Icon.web.tsx +74 -0
  269. package/src/icons/media/TenSecondsForwardIcon.native.tsx +33 -0
  270. package/src/icons/media/TenSecondsForwardIcon.web.tsx +37 -0
  271. package/src/icons/media/VideoRecorderIcon.native.tsx +37 -0
  272. package/src/icons/media/VideoRecorderIcon.web.tsx +36 -0
  273. package/src/icons/media/VolumeIcon.native.tsx +26 -0
  274. package/src/icons/media/VolumeIcon.web.tsx +30 -0
  275. package/src/icons/media/VolumeMaxIcon.native.tsx +27 -0
  276. package/src/icons/media/VolumeMaxIcon.web.tsx +36 -0
  277. package/src/icons/media/index.ts +17 -0
  278. package/src/icons/navigation/AlignLeftIcon.native.tsx +21 -0
  279. package/src/icons/navigation/AlignLeftIcon.web.tsx +31 -0
  280. package/src/icons/navigation/DotgridIcon.native.tsx +40 -0
  281. package/src/icons/navigation/DotgridIcon.web.tsx +51 -0
  282. package/src/icons/navigation/FilterIcon.native.tsx +22 -0
  283. package/src/icons/navigation/FilterIcon.web.tsx +26 -0
  284. package/src/icons/navigation/Grid01Icon.native.tsx +42 -0
  285. package/src/icons/navigation/Grid01Icon.web.tsx +52 -0
  286. package/src/icons/navigation/GridIcon.native.tsx +47 -0
  287. package/src/icons/navigation/GridIcon.web.tsx +58 -0
  288. package/src/icons/navigation/HomeIcon.native.tsx +30 -0
  289. package/src/icons/navigation/HomeIcon.web.tsx +54 -0
  290. package/src/icons/navigation/ListIcon.native.tsx +25 -0
  291. package/src/icons/navigation/ListIcon.web.tsx +32 -0
  292. package/src/icons/navigation/MenuIcon.native.tsx +24 -0
  293. package/src/icons/navigation/MenuIcon.web.tsx +29 -0
  294. package/src/icons/navigation/Rows01Icon.native.tsx +29 -0
  295. package/src/icons/navigation/Rows01Icon.web.tsx +37 -0
  296. package/src/icons/navigation/Rows03Icon.native.tsx +27 -0
  297. package/src/icons/navigation/Rows03Icon.web.tsx +36 -0
  298. package/src/icons/navigation/SearchIcon.native.tsx +23 -0
  299. package/src/icons/navigation/SearchIcon.web.tsx +27 -0
  300. package/src/icons/navigation/SidebarMenuIcon.native.tsx +22 -0
  301. package/src/icons/navigation/SidebarMenuIcon.web.tsx +26 -0
  302. package/src/icons/navigation/SortIcon.native.tsx +21 -0
  303. package/src/icons/navigation/SortIcon.web.tsx +32 -0
  304. package/src/icons/navigation/index.ts +13 -0
  305. package/src/icons/security/EyeIcon.native.tsx +29 -0
  306. package/src/icons/security/EyeIcon.web.tsx +39 -0
  307. package/src/icons/security/Lock03Icon.native.tsx +25 -0
  308. package/src/icons/security/Lock03Icon.web.tsx +31 -0
  309. package/src/icons/security/LockIcon.native.tsx +22 -0
  310. package/src/icons/security/LockIcon.web.tsx +26 -0
  311. package/src/icons/security/LockUnlocked03Icon.native.tsx +25 -0
  312. package/src/icons/security/LockUnlocked03Icon.web.tsx +31 -0
  313. package/src/icons/security/PasswordInputIcon.native.tsx +20 -0
  314. package/src/icons/security/PasswordInputIcon.web.tsx +30 -0
  315. package/src/icons/security/index.ts +5 -0
  316. package/src/icons/social/AppleMusicIcon.native.tsx +44 -0
  317. package/src/icons/social/AppleMusicIcon.web.tsx +50 -0
  318. package/src/icons/social/AudiomackIcon.native.tsx +36 -0
  319. package/src/icons/social/AudiomackIcon.web.tsx +45 -0
  320. package/src/icons/social/InstagramShortsIcon.native.tsx +38 -0
  321. package/src/icons/social/InstagramShortsIcon.web.tsx +47 -0
  322. package/src/icons/social/ShazamIcon.native.tsx +33 -0
  323. package/src/icons/social/ShazamIcon.web.tsx +42 -0
  324. package/src/icons/social/SoundCloudIcon.native.tsx +29 -0
  325. package/src/icons/social/SoundCloudIcon.web.tsx +38 -0
  326. package/src/icons/social/SpotifyIcon.native.tsx +31 -0
  327. package/src/icons/social/SpotifyIcon.web.tsx +38 -0
  328. package/src/icons/social/TiktokIcon.native.tsx +38 -0
  329. package/src/icons/social/TiktokIcon.web.tsx +47 -0
  330. package/src/icons/social/YoutubeIcon.native.tsx +26 -0
  331. package/src/icons/social/YoutubeIcon.web.tsx +35 -0
  332. package/src/icons/social/YoutubeReelsIcon.native.tsx +25 -0
  333. package/src/icons/social/YoutubeReelsIcon.web.tsx +34 -0
  334. package/src/icons/social/index.ts +9 -0
  335. package/src/icons/time/CalendarIcon.native.tsx +32 -0
  336. package/src/icons/time/CalendarIcon.web.tsx +35 -0
  337. package/src/icons/time/ClockIcon.native.tsx +30 -0
  338. package/src/icons/time/ClockIcon.web.tsx +49 -0
  339. package/src/icons/time/index.ts +2 -0
  340. package/src/icons/users/AccountIcon.native.tsx +34 -0
  341. package/src/icons/users/AccountIcon.web.tsx +33 -0
  342. package/src/icons/users/UserApproveIcon.native.tsx +27 -0
  343. package/src/icons/users/UserApproveIcon.web.tsx +26 -0
  344. package/src/icons/users/UserIcon.native.tsx +34 -0
  345. package/src/icons/users/UserIcon.web.tsx +33 -0
  346. package/src/icons/users/UserPlusIcon.native.tsx +38 -0
  347. package/src/icons/users/UserPlusIcon.web.tsx +42 -0
  348. package/src/icons/users/UserXIcon.native.tsx +33 -0
  349. package/src/icons/users/UserXIcon.web.tsx +38 -0
  350. package/src/icons/users/Users03Icon.native.tsx +29 -0
  351. package/src/icons/users/Users03Icon.web.tsx +31 -0
  352. package/src/icons/users/UsersIcon.native.tsx +28 -0
  353. package/src/icons/users/UsersIcon.web.tsx +27 -0
  354. package/src/icons/users/UsersPlusIcon.native.tsx +27 -0
  355. package/src/icons/users/UsersPlusIcon.web.tsx +31 -0
  356. package/src/icons/users/index.ts +8 -0
  357. package/src/index.ts +2 -0
  358. package/src/tokens/colors.ts +55 -0
  359. package/src/tokens/index.ts +4 -0
  360. package/src/tokens/radius.ts +16 -0
  361. package/src/tokens/spacing.ts +27 -0
  362. package/src/tokens/typography.ts +42 -0
  363. package/src/utils/cn.ts +3 -0
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+
3
+ interface ListIconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ export const ListIcon = React.forwardRef<SVGSVGElement, ListIconProps>(
9
+ ({ size = 18, color = "currentColor", ...props }, ref) => (
10
+ <svg
11
+ ref={ref}
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="M3 9.75C3.41421 9.75 3.75 9.41421 3.75 9C3.75 8.58579 3.41421 8.25 3 8.25C2.58579 8.25 2.25 8.58579 2.25 9C2.25 9.41421 2.58579 9.75 3 9.75ZM3 5.25C3.41421 5.25 3.75 4.91421 3.75 4.5C3.75 4.08579 3.41421 3.75 3 3.75C2.58579 3.75 2.25 4.08579 2.25 4.5C2.25 4.91421 2.58579 5.25 3 5.25ZM3 14.25C3.41421 14.25 3.75 13.9142 3.75 13.5C3.75 13.0858 3.41421 12.75 3 12.75C2.58579 12.75 2.25 13.0858 2.25 13.5C2.25 13.9142 2.58579 14.25 3 14.25Z"
21
+ fill={color}
22
+ />
23
+ <path
24
+ d="M15.75 9L6.75 9M15.75 4.5L6.75 4.5M15.75 13.5L6.75 13.5M3.75 9C3.75 9.41421 3.41421 9.75 3 9.75C2.58579 9.75 2.25 9.41421 2.25 9C2.25 8.58579 2.58579 8.25 3 8.25C3.41421 8.25 3.75 8.58579 3.75 9ZM3.75 4.5C3.75 4.91421 3.41421 5.25 3 5.25C2.58579 5.25 2.25 4.91421 2.25 4.5C2.25 4.08579 2.58579 3.75 3 3.75C3.41421 3.75 3.75 4.08579 3.75 4.5ZM3.75 13.5C3.75 13.9142 3.41421 14.25 3 14.25C2.58579 14.25 2.25 13.9142 2.25 13.5C2.25 13.0858 2.58579 12.75 3 12.75C3.41421 12.75 3.75 13.0858 3.75 13.5Z"
25
+ stroke={color}
26
+ strokeWidth="1.5"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ </svg>
31
+ ),
32
+ );
@@ -0,0 +1,24 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface MenuIconProps {
5
+ width?: number;
6
+ height?: number;
7
+ }
8
+
9
+ const MenuIcon = ({ width = 18, height = 18 }: MenuIconProps) => (
10
+ <Svg width={width} height={height} viewBox="0 0 18 18" fill="none">
11
+ <Path
12
+ d="M2.25 9H15.75M2.25 4.5H15.75M2.25 13.5H15.75"
13
+ stroke="currentColor"
14
+ strokeWidth="1.5"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ </Svg>
19
+ );
20
+
21
+ MenuIcon.displayName = 'MenuIcon';
22
+
23
+ export { MenuIcon };
24
+ export default MenuIcon;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+
3
+ interface MenuIconProps extends React.SVGProps<SVGSVGElement> {}
4
+
5
+ const MenuIcon = React.forwardRef<SVGSVGElement, MenuIconProps>(
6
+ ({ width = 18, height = 18, ...props }, ref) => (
7
+ <svg
8
+ ref={ref}
9
+ width={width}
10
+ height={height}
11
+ viewBox="0 0 18 18"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <path
17
+ d="M2.25 9H15.75M2.25 4.5H15.75M2.25 13.5H15.75"
18
+ stroke="currentColor"
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ ),
25
+ );
26
+
27
+ MenuIcon.displayName = "MenuIcon";
28
+
29
+ export default MenuIcon;
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface Rows01IconProps {
5
+ size?: number;
6
+ fill?: string;
7
+ }
8
+
9
+ const Rows01Icon: React.FC<Rows01IconProps> = ({ size = 16, fill = 'none' }) => (
10
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill={fill}>
11
+ <Path
12
+ d="M11.8667 6.66667C12.6134 6.66667 12.9868 6.66667 13.272 6.52134C13.5229 6.39351 13.7268 6.18954 13.8547 5.93865C14 5.65344 14 5.28007 14 4.53333V4.13333C14 3.3866 14 3.01323 13.8547 2.72801C13.7268 2.47713 13.5229 2.27316 13.272 2.14533C12.9868 2 12.6134 2 11.8667 2L4.13333 2C3.3866 2 3.01323 2 2.72801 2.14532C2.47713 2.27316 2.27316 2.47713 2.14532 2.72801C2 3.01323 2 3.3866 2 4.13333L2 4.53333C2 5.28007 2 5.65344 2.14532 5.93865C2.27316 6.18954 2.47713 6.39351 2.72801 6.52134C3.01323 6.66667 3.3866 6.66667 4.13333 6.66667L11.8667 6.66667Z"
13
+ stroke="currentColor"
14
+ strokeWidth={1.5}
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <Path
19
+ d="M11.8667 14C12.6134 14 12.9868 14 13.272 13.8547C13.5229 13.7268 13.7268 13.5229 13.8547 13.272C14 12.9868 14 12.6134 14 11.8667V11.4667C14 10.7199 14 10.3466 13.8547 10.0613C13.7268 9.81046 13.5229 9.60649 13.272 9.47866C12.9868 9.33333 12.6134 9.33333 11.8667 9.33333L4.13333 9.33333C3.3866 9.33333 3.01323 9.33333 2.72801 9.47866C2.47713 9.60649 2.27316 9.81046 2.14532 10.0613C2 10.3466 2 10.7199 2 11.4667L2 11.8667C2 12.6134 2 12.9868 2.14532 13.272C2.27316 13.5229 2.47713 13.7268 2.72801 13.8547C3.01323 14 3.3866 14 4.13333 14H11.8667Z"
20
+ stroke="currentColor"
21
+ strokeWidth={1.5}
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </Svg>
26
+ );
27
+
28
+ export { Rows01Icon };
29
+ export default Rows01Icon;
@@ -0,0 +1,37 @@
1
+ import React from "react";
2
+
3
+ interface Rows01IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ }
6
+
7
+ const Rows01Icon: React.FC<Rows01IconProps> = ({
8
+ size = 16,
9
+ fill = "none",
10
+ ...props
11
+ }) => (
12
+ <svg
13
+ width={size}
14
+ height={size}
15
+ viewBox="0 0 16 16"
16
+ fill={fill}
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ {...props}
19
+ >
20
+ <path
21
+ d="M11.8667 6.66667C12.6134 6.66667 12.9868 6.66667 13.272 6.52134C13.5229 6.39351 13.7268 6.18954 13.8547 5.93865C14 5.65344 14 5.28007 14 4.53333V4.13333C14 3.3866 14 3.01323 13.8547 2.72801C13.7268 2.47713 13.5229 2.27316 13.272 2.14533C12.9868 2 12.6134 2 11.8667 2L4.13333 2C3.3866 2 3.01323 2 2.72801 2.14532C2.47713 2.27316 2.27316 2.47713 2.14532 2.72801C2 3.01323 2 3.3866 2 4.13333L2 4.53333C2 5.28007 2 5.65344 2.14532 5.93865C2.27316 6.18954 2.47713 6.39351 2.72801 6.52134C3.01323 6.66667 3.3866 6.66667 4.13333 6.66667L11.8667 6.66667Z"
22
+ stroke="currentColor"
23
+ strokeWidth={1.5}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ <path
28
+ d="M11.8667 14C12.6134 14 12.9868 14 13.272 13.8547C13.5229 13.7268 13.7268 13.5229 13.8547 13.272C14 12.9868 14 12.6134 14 11.8667V11.4667C14 10.7199 14 10.3466 13.8547 10.0613C13.7268 9.81046 13.5229 9.60649 13.272 9.47866C12.9868 9.33333 12.6134 9.33333 11.8667 9.33333L4.13333 9.33333C3.3866 9.33333 3.01323 9.33333 2.72801 9.47866C2.47713 9.60649 2.27316 9.81046 2.14532 10.0613C2 10.3466 2 10.7199 2 11.4667L2 11.8667C2 12.6134 2 12.9868 2.14532 13.272C2.27316 13.5229 2.47713 13.7268 2.72801 13.8547C3.01323 14 3.3866 14 4.13333 14H11.8667Z"
29
+ stroke="currentColor"
30
+ strokeWidth={1.5}
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ </svg>
35
+ );
36
+
37
+ export default Rows01Icon;
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ type Rows03IconProps = {
5
+ size?: number;
6
+ strokeWidth?: number;
7
+ };
8
+
9
+ const Rows03Icon: React.FC<Rows03IconProps> = ({ size = 24, strokeWidth = 2 }) => {
10
+ return (
11
+ <Svg
12
+ width={size}
13
+ height={size}
14
+ viewBox="0 0 24 24"
15
+ fill="none"
16
+ stroke="currentColor"
17
+ strokeWidth={strokeWidth}
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ >
21
+ <Path d="M3 9H21M3 15H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" />
22
+ </Svg>
23
+ );
24
+ };
25
+
26
+ export { Rows03Icon };
27
+ export default Rows03Icon;
@@ -0,0 +1,36 @@
1
+ "use client";
2
+
3
+ import React from "react";
4
+
5
+ type IconProps = {
6
+ className?: string;
7
+ size?: number;
8
+ strokeWidth?: number;
9
+ };
10
+
11
+ const Rows03Icon: React.FC<IconProps> = ({
12
+ className,
13
+ size = 24,
14
+ strokeWidth = 2,
15
+ }) => {
16
+ return (
17
+ <svg
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ width={size}
20
+ height={size}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ stroke="currentColor"
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ className={className}
28
+ role="img"
29
+ aria-hidden="true"
30
+ >
31
+ <path d="M3 9H21M3 15H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" />
32
+ </svg>
33
+ );
34
+ };
35
+
36
+ export default Rows03Icon;
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SearchIconProps {
5
+ size?: number;
6
+ strokeWidth?: string;
7
+ color?: string;
8
+ }
9
+
10
+ const SearchIcon: React.FC<SearchIconProps> = ({ size = 18, color = '#000000', strokeWidth = '1.5' }) => (
11
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
12
+ <Path
13
+ d="M15.75 15.75L11.2501 11.25M12.75 7.5C12.75 10.3995 10.3995 12.75 7.5 12.75C4.6005 12.75 2.25 10.3995 2.25 7.5C2.25 4.6005 4.6005 2.25 7.5 2.25C10.3995 2.25 12.75 4.6005 12.75 7.5Z"
14
+ stroke={color}
15
+ strokeWidth={strokeWidth}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ </Svg>
20
+ );
21
+
22
+ export { SearchIcon };
23
+ export default SearchIcon;
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ strokeWidth?: string;
6
+ color?: string;
7
+ }
8
+
9
+ const SearchIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor", strokeWidth="1.5" }) => (
10
+ <svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 18 18"
14
+ fill="none"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ >
17
+ <path
18
+ d="M15.75 15.75L11.2501 11.25M12.75 7.5C12.75 10.3995 10.3995 12.75 7.5 12.75C4.6005 12.75 2.25 10.3995 2.25 7.5C2.25 4.6005 4.6005 2.25 7.5 2.25C10.3995 2.25 12.75 4.6005 12.75 7.5Z"
19
+ stroke={color}
20
+ strokeWidth={strokeWidth}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </svg>
25
+ );
26
+
27
+ export default SearchIcon;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SidebarMenuIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const SidebarMenuIcon: React.FC<SidebarMenuIconProps> = ({ size = 24, color = '#000000' }) => (
10
+ <Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
11
+ <Path
12
+ d="M3 12H15M3 6H21M3 18H21"
13
+ stroke={color}
14
+ strokeWidth="2"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ </Svg>
19
+ );
20
+
21
+ export { SidebarMenuIcon };
22
+ export default SidebarMenuIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const SidebarMenuIcon: React.FC<IconProps> = ({ size = 24, color = "currentColor" }) => (
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="M3 12H15M3 6H21M3 18H21"
18
+ stroke={color}
19
+ strokeWidth="2"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ );
25
+
26
+ export default SidebarMenuIcon;
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface SortIconProps {
5
+ strokeWidth?: number;
6
+ }
7
+
8
+ const SortIcon: React.FC<SortIconProps> = ({ strokeWidth = 1.5 }) => (
9
+ <Svg width={14} height={14} viewBox="0 0 14 14" fill="none">
10
+ <Path
11
+ d="M3.5 7H10.5M1.75 3.5H12.25M5.25 10.5H8.75"
12
+ stroke="currentColor"
13
+ strokeWidth={strokeWidth}
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ />
17
+ </Svg>
18
+ );
19
+
20
+ export { SortIcon };
21
+ export default SortIcon;
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+
3
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ strokeWidth?: number;
6
+ }
7
+
8
+ const SortIcon: React.FC<IconProps> = ({
9
+ className,
10
+ strokeWidth = 1.5,
11
+ ...props
12
+ }) => (
13
+ <svg
14
+ width={14}
15
+ height={14}
16
+ viewBox="0 0 14 14"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ className={className}
20
+ {...props}
21
+ >
22
+ <path
23
+ d="M3.5 7H10.5M1.75 3.5H12.25M5.25 10.5H8.75"
24
+ stroke="currentColor"
25
+ strokeWidth={strokeWidth}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+
32
+ export default SortIcon;
@@ -0,0 +1,13 @@
1
+ export { default as AlignLeftIcon } from './AlignLeftIcon';
2
+ export { default as DotgridIcon } from './DotgridIcon';
3
+ export { default as FilterIcon } from './FilterIcon';
4
+ export { default as Grid01Icon } from './Grid01Icon';
5
+ export { GridIcon } from './GridIcon';
6
+ export { HomeIcon } from './HomeIcon';
7
+ export { ListIcon } from './ListIcon';
8
+ export { default as MenuIcon } from './MenuIcon';
9
+ export { default as Rows01Icon } from './Rows01Icon';
10
+ export { default as Rows03Icon } from './Rows03Icon';
11
+ export { default as SearchIcon } from './SearchIcon';
12
+ export { default as SidebarMenuIcon } from './SidebarMenuIcon';
13
+ export { default as SortIcon } from './SortIcon';
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface EyeIconProps {
5
+ width?: number;
6
+ height?: number;
7
+ }
8
+
9
+ const EyeIcon = ({ width = 18, height = 18 }: EyeIconProps) => (
10
+ <Svg width={width} height={height} viewBox="0 0 18 18" fill="none">
11
+ <Path
12
+ d="M1.81509 9.53488C1.71295 9.37315 1.66188 9.29229 1.63329 9.16756C1.61182 9.07387 1.61182 8.92613 1.63329 8.83244C1.66188 8.70771 1.71295 8.62685 1.81509 8.46512C2.65915 7.12863 5.17155 3.75 9.0003 3.75C12.8291 3.75 15.3415 7.12863 16.1855 8.46512C16.2877 8.62685 16.3387 8.70771 16.3673 8.83244C16.3888 8.92613 16.3888 9.07387 16.3673 9.16756C16.3387 9.29229 16.2877 9.37315 16.1855 9.53488C15.3415 10.8714 12.8291 14.25 9.0003 14.25C5.17155 14.25 2.65915 10.8714 1.81509 9.53488Z"
13
+ stroke="currentColor"
14
+ strokeWidth={1.5}
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <Path
19
+ d="M9.0003 11.25C10.2429 11.25 11.2503 10.2426 11.2503 9C11.2503 7.75736 10.2429 6.75 9.0003 6.75C7.75766 6.75 6.7503 7.75736 6.7503 9C6.7503 10.2426 7.75766 11.25 9.0003 11.25Z"
20
+ stroke="currentColor"
21
+ strokeWidth={1.5}
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </Svg>
26
+ );
27
+
28
+ export { EyeIcon };
29
+ export default EyeIcon;
@@ -0,0 +1,39 @@
1
+ import * as React from "react";
2
+ import { SVGProps } from "react";
3
+
4
+ interface EyeIconProps extends SVGProps<SVGSVGElement> {
5
+ /** Tailwind or custom classes to style the icon */
6
+ className?: string;
7
+ }
8
+
9
+ const EyeIcon = React.forwardRef<SVGSVGElement, EyeIconProps>(
10
+ ({ className = "text-gray-900", width = 18, height = 18, ...props }, ref) => (
11
+ <svg
12
+ ref={ref}
13
+ width={width}
14
+ height={height}
15
+ viewBox="0 0 18 18"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ className={className}
19
+ {...props}
20
+ >
21
+ <path
22
+ d="M1.81509 9.53488C1.71295 9.37315 1.66188 9.29229 1.63329 9.16756C1.61182 9.07387 1.61182 8.92613 1.63329 8.83244C1.66188 8.70771 1.71295 8.62685 1.81509 8.46512C2.65915 7.12863 5.17155 3.75 9.0003 3.75C12.8291 3.75 15.3415 7.12863 16.1855 8.46512C16.2877 8.62685 16.3387 8.70771 16.3673 8.83244C16.3888 8.92613 16.3888 9.07387 16.3673 9.16756C16.3387 9.29229 16.2877 9.37315 16.1855 9.53488C15.3415 10.8714 12.8291 14.25 9.0003 14.25C5.17155 14.25 2.65915 10.8714 1.81509 9.53488Z"
23
+ stroke="currentColor"
24
+ strokeWidth={1.5}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ <path
29
+ d="M9.0003 11.25C10.2429 11.25 11.2503 10.2426 11.2503 9C11.2503 7.75736 10.2429 6.75 9.0003 6.75C7.75766 6.75 6.7503 7.75736 6.7503 9C6.7503 10.2426 7.75766 11.25 9.0003 11.25Z"
30
+ stroke="currentColor"
31
+ strokeWidth={1.5}
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
+ />
35
+ </svg>
36
+ ),
37
+ );
38
+
39
+ export default EyeIcon;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface Lock03IconProps {
5
+ size?: number | string;
6
+ strokeColor?: string;
7
+ }
8
+
9
+ const Lock03Icon: React.FC<Lock03IconProps> = ({
10
+ size = 16,
11
+ strokeColor = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
14
+ <Path
15
+ d="M11.3346 7.33333V5.33333C11.3346 3.49238 9.84225 2 8.0013 2C6.16035 2 4.66797 3.49238 4.66797 5.33333V7.33333M5.86797 14H10.1346C11.2547 14 11.8148 14 12.2426 13.782C12.6189 13.5903 12.9249 13.2843 13.1166 12.908C13.3346 12.4802 13.3346 11.9201 13.3346 10.8V10.5333C13.3346 9.41323 13.3346 8.85318 13.1166 8.42535C12.9249 8.04903 12.6189 7.74307 12.2426 7.55132C11.8148 7.33333 11.2547 7.33333 10.1346 7.33333H5.86797C4.74786 7.33333 4.18781 7.33333 3.75999 7.55132C3.38366 7.74307 3.0777 8.04903 2.88596 8.42535C2.66797 8.85318 2.66797 9.41323 2.66797 10.5333V10.8C2.66797 11.9201 2.66797 12.4802 2.88596 12.908C3.0777 13.2843 3.38366 13.5903 3.75999 13.782C4.18781 14 4.74786 14 5.86797 14Z"
16
+ stroke={strokeColor}
17
+ strokeWidth={1.5}
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { Lock03Icon };
25
+ export default Lock03Icon;
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+
3
+ interface Lock03IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ strokeColor?: string;
6
+ }
7
+
8
+ const Lock03Icon: React.FC<Lock03IconProps> = ({
9
+ size = 16,
10
+ strokeColor = "currentColor",
11
+ ...props
12
+ }) => (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 16 16"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ {...props}
20
+ >
21
+ <path
22
+ d="M11.3346 7.33333V5.33333C11.3346 3.49238 9.84225 2 8.0013 2C6.16035 2 4.66797 3.49238 4.66797 5.33333V7.33333M5.86797 14H10.1346C11.2547 14 11.8148 14 12.2426 13.782C12.6189 13.5903 12.9249 13.2843 13.1166 12.908C13.3346 12.4802 13.3346 11.9201 13.3346 10.8V10.5333C13.3346 9.41323 13.3346 8.85318 13.1166 8.42535C12.9249 8.04903 12.6189 7.74307 12.2426 7.55132C11.8148 7.33333 11.2547 7.33333 10.1346 7.33333H5.86797C4.74786 7.33333 4.18781 7.33333 3.75999 7.55132C3.38366 7.74307 3.0777 8.04903 2.88596 8.42535C2.66797 8.85318 2.66797 9.41323 2.66797 10.5333V10.8C2.66797 11.9201 2.66797 12.4802 2.88596 12.908C3.0777 13.2843 3.38366 13.5903 3.75999 13.782C4.18781 14 4.74786 14 5.86797 14Z"
23
+ stroke={strokeColor}
24
+ strokeWidth={1.5}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ export default Lock03Icon;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface LockIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const LockIcon: React.FC<LockIconProps> = ({ size = 18, color = '#000000' }) => (
10
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
11
+ <Path
12
+ d="M12.75 7.5V6C12.75 3.92893 11.0711 2.25 9 2.25C6.92893 2.25 5.25 3.92893 5.25 6V7.5M9 10.875V12.375M6.6 15.75H11.4C12.6601 15.75 13.2902 15.75 13.7715 15.5048C14.1948 15.289 14.539 14.9448 14.7548 14.5215C15 14.0402 15 13.4101 15 12.15V11.1C15 9.83988 15 9.20982 14.7548 8.72852C14.539 8.30516 14.1948 7.96095 13.7715 7.74524C13.2902 7.5 12.6601 7.5 11.4 7.5H6.6C5.33988 7.5 4.70982 7.5 4.22852 7.74524C3.80516 7.96095 3.46095 8.30516 3.24524 8.72852C3 9.20982 3 9.83988 3 11.1V12.15C3 13.4101 3 14.0402 3.24524 14.5215C3.46095 14.9448 3.80516 15.289 4.22852 15.5048C4.70982 15.75 5.33988 15.75 6.6 15.75Z"
13
+ stroke={color}
14
+ strokeWidth="1.5"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ </Svg>
19
+ );
20
+
21
+ export { LockIcon };
22
+ export default LockIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const LockIcon: 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="M12.75 7.5V6C12.75 3.92893 11.0711 2.25 9 2.25C6.92893 2.25 5.25 3.92893 5.25 6V7.5M9 10.875V12.375M6.6 15.75H11.4C12.6601 15.75 13.2902 15.75 13.7715 15.5048C14.1948 15.289 14.539 14.9448 14.7548 14.5215C15 14.0402 15 13.4101 15 12.15V11.1C15 9.83988 15 9.20982 14.7548 8.72852C14.539 8.30516 14.1948 7.96095 13.7715 7.74524C13.2902 7.5 12.6601 7.5 11.4 7.5H6.6C5.33988 7.5 4.70982 7.5 4.22852 7.74524C3.80516 7.96095 3.46095 8.30516 3.24524 8.72852C3 9.20982 3 9.83988 3 11.1V12.15C3 13.4101 3 14.0402 3.24524 14.5215C3.46095 14.9448 3.80516 15.289 4.22852 15.5048C4.70982 15.75 5.33988 15.75 6.6 15.75Z"
18
+ stroke={color}
19
+ strokeWidth="1.5"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ );
25
+
26
+ export default LockIcon;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface LockUnlocked03IconProps {
5
+ size?: number | string;
6
+ strokeColor?: string;
7
+ }
8
+
9
+ const LockUnlocked03Icon: React.FC<LockUnlocked03IconProps> = ({
10
+ size = 16,
11
+ strokeColor = '#000000',
12
+ }) => (
13
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
14
+ <Path
15
+ d="M4.66797 7.33333V5.33333C4.66797 3.49238 6.16035 2 8.0013 2C9.61394 2 10.9591 3.14517 11.268 4.66667M5.86797 14H10.1346C11.2547 14 11.8148 14 12.2426 13.782C12.6189 13.5903 12.9249 13.2843 13.1166 12.908C13.3346 12.4802 13.3346 11.9201 13.3346 10.8V10.5333C13.3346 9.41323 13.3346 8.85318 13.1166 8.42535C12.9249 8.04903 12.6189 7.74307 12.2426 7.55132C11.8148 7.33333 11.2547 7.33333 10.1346 7.33333H5.86797C4.74786 7.33333 4.18781 7.33333 3.75999 7.55132C3.38366 7.74307 3.0777 8.04903 2.88596 8.42535C2.66797 8.85318 2.66797 9.41323 2.66797 10.5333V10.8C2.66797 11.9201 2.66797 12.4802 2.88596 12.908C3.0777 13.2843 3.38366 13.5903 3.75999 13.782C4.18781 14 4.74786 14 5.86797 14Z"
16
+ stroke={strokeColor}
17
+ strokeWidth={1.5}
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ export { LockUnlocked03Icon };
25
+ export default LockUnlocked03Icon;
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+
3
+ interface LockUnlocked03IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ strokeColor?: string;
6
+ }
7
+
8
+ const LockUnlocked03Icon: React.FC<LockUnlocked03IconProps> = ({
9
+ size = 16,
10
+ strokeColor = "currentColor",
11
+ ...props
12
+ }) => (
13
+ <svg
14
+ width={size}
15
+ height={size}
16
+ viewBox="0 0 16 16"
17
+ fill="none"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ {...props}
20
+ >
21
+ <path
22
+ d="M4.66797 7.33333V5.33333C4.66797 3.49238 6.16035 2 8.0013 2C9.61394 2 10.9591 3.14517 11.268 4.66667M5.86797 14H10.1346C11.2547 14 11.8148 14 12.2426 13.782C12.6189 13.5903 12.9249 13.2843 13.1166 12.908C13.3346 12.4802 13.3346 11.9201 13.3346 10.8V10.5333C13.3346 9.41323 13.3346 8.85318 13.1166 8.42535C12.9249 8.04903 12.6189 7.74307 12.2426 7.55132C11.8148 7.33333 11.2547 7.33333 10.1346 7.33333H5.86797C4.74786 7.33333 4.18781 7.33333 3.75999 7.55132C3.38366 7.74307 3.0777 8.04903 2.88596 8.42535C2.66797 8.85318 2.66797 9.41323 2.66797 10.5333V10.8C2.66797 11.9201 2.66797 12.4802 2.88596 12.908C3.0777 13.2843 3.38366 13.5903 3.75999 13.782C4.18781 14 4.74786 14 5.86797 14Z"
23
+ stroke={strokeColor}
24
+ strokeWidth={1.5}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ export default LockUnlocked03Icon;
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Svg, { Path } from 'react-native-svg';
3
+
4
+ interface PasswordInputIconProps {
5
+ size?: number;
6
+ }
7
+
8
+ export const PasswordInputIcon = ({ size = 18 }: PasswordInputIconProps) => (
9
+ <Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
10
+ <Path
11
+ d="M16.5 8.25V6.15C16.5 5.30992 16.5 4.88988 16.3365 4.56901C16.1927 4.28677 15.9632 4.0573 15.681 3.91349C15.3601 3.75 14.9401 3.75 14.1 3.75H3.9C3.05992 3.75 2.63988 3.75 2.31901 3.91349C2.03677 4.0573 1.8073 4.28677 1.66349 4.56901C1.5 4.88988 1.5 5.30992 1.5 6.15V8.85C1.5 9.69008 1.5 10.1101 1.66349 10.431C1.8073 10.7132 2.03677 10.9427 2.31901 11.0865C2.63988 11.25 3.05992 11.25 3.9 11.25H8.25M9 7.5H9.00375M12.75 7.5H12.7538M5.25 7.5H5.25375M14.4375 12.75V11.4375C14.4375 10.7126 13.8499 10.125 13.125 10.125C12.4001 10.125 11.8125 10.7126 11.8125 11.4375V12.75M9.1875 7.5C9.1875 7.60355 9.10355 7.6875 9 7.6875C8.89645 7.6875 8.8125 7.60355 8.8125 7.5C8.8125 7.39645 8.89645 7.3125 9 7.3125C9.10355 7.3125 9.1875 7.39645 9.1875 7.5ZM12.9375 7.5C12.9375 7.60355 12.8536 7.6875 12.75 7.6875C12.6464 7.6875 12.5625 7.60355 12.5625 7.5C12.5625 7.39645 12.6464 7.3125 12.75 7.3125C12.8536 7.3125 12.9375 7.39645 12.9375 7.5ZM5.4375 7.5C5.4375 7.60355 5.35355 7.6875 5.25 7.6875C5.14645 7.6875 5.0625 7.60355 5.0625 7.5C5.0625 7.39645 5.14645 7.3125 5.25 7.3125C5.35355 7.3125 5.4375 7.39645 5.4375 7.5ZM11.7 15.75H14.55C14.97 15.75 15.1801 15.75 15.3405 15.6683C15.4816 15.5963 15.5963 15.4816 15.6683 15.3405C15.75 15.1801 15.75 14.97 15.75 14.55V13.95C15.75 13.53 15.75 13.3199 15.6683 13.1595C15.5963 13.0184 15.4816 12.9037 15.3405 12.8317C15.1801 12.75 14.97 12.75 14.55 12.75H11.7C11.28 12.75 11.0699 12.75 10.9095 12.8317C10.7684 12.9037 10.6537 13.0184 10.5817 13.1595C10.5 13.3199 10.5 13.53 10.5 13.95V14.55C10.5 14.97 10.5 15.1801 10.5817 15.3405C10.6537 15.4816 10.7684 15.5963 10.9095 15.6683C11.0699 15.75 11.28 15.75 11.7 15.75Z"
12
+ stroke="currentColor"
13
+ strokeWidth="1.5"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ />
17
+ </Svg>
18
+ );
19
+
20
+ export default PasswordInputIcon;