@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,50 @@
1
+ import * as React from "react";
2
+
3
+ type XCircleIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number;
5
+ title?: string;
6
+ strokeWidth?: number;
7
+ };
8
+
9
+ const XCircleIcon = React.forwardRef<SVGSVGElement, XCircleIconProps>(
10
+ (
11
+ {
12
+ size = 16,
13
+ className,
14
+ title = "X circle icon",
15
+ strokeWidth = 1.5,
16
+ ...rest
17
+ },
18
+ ref,
19
+ ) => {
20
+ if (size <= 0) return null;
21
+
22
+ return (
23
+ <svg
24
+ ref={ref}
25
+ width={size}
26
+ height={size}
27
+ viewBox="0 0 16 16"
28
+ fill="none"
29
+ role="img"
30
+ aria-label={title}
31
+ focusable={false}
32
+ className={className}
33
+ xmlns="http://www.w3.org/2000/svg"
34
+ {...rest}
35
+ >
36
+ {title ? <title>{title}</title> : null}
37
+ <path
38
+ d="M10.0002 5.99967L6.00016 9.99967M6.00016 5.99967L10.0002 9.99967M14.6668 7.99967C14.6668 11.6816 11.6821 14.6663 8.00016 14.6663C4.31826 14.6663 1.3335 11.6816 1.3335 7.99967C1.3335 4.31778 4.31826 1.33301 8.00016 1.33301C11.6821 1.33301 14.6668 4.31778 14.6668 7.99967Z"
39
+ stroke="currentColor"
40
+ strokeWidth={strokeWidth}
41
+ strokeLinecap="round"
42
+ strokeLinejoin="round"
43
+ />
44
+ </svg>
45
+ );
46
+ },
47
+ );
48
+
49
+ XCircleIcon.displayName = "XCircleIcon";
50
+ export default XCircleIcon;
@@ -0,0 +1,8 @@
1
+ export { default as AlertTriangleIcon } from './AlertTriangleIcon';
2
+ export { default as BellIcon } from './BellIcon';
3
+ export { default as CheckCircleIcon } from './CheckCircleIcon';
4
+ export { default as InfoCircleIcon } from './InfoCircleIcon';
5
+ export { default as InfoIcon } from './InfoIcon';
6
+ export { default as InfoSquareIcon } from './InfoSquareIcon';
7
+ export { SlashCircleIcon } from './SlashCircleIcon';
8
+ export { default as XCircleIcon } from './XCircleIcon';
@@ -0,0 +1,29 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type ArrowDownIconProps = {
5
+ size?: number | string;
6
+ strokeWidth?: number;
7
+ };
8
+
9
+ export const ArrowDownIcon: React.FC<ArrowDownIconProps> = ({
10
+ size = 20,
11
+ strokeWidth = 2,
12
+ }) => (
13
+ <Svg
14
+ width={size}
15
+ height={size}
16
+ fill="none"
17
+ viewBox="0 0 24 24"
18
+ stroke="currentColor"
19
+ >
20
+ <Path
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth={strokeWidth}
24
+ d="M19 9l-7 7-7-7"
25
+ />
26
+ </Svg>
27
+ );
28
+
29
+ export default ArrowDownIcon;
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+
3
+ type ArrowDownIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string; // e.g. 18, "1.25rem"
5
+ strokeWidth?: number; // e.g. 1.5
6
+ };
7
+
8
+ export const ArrowDownIcon: React.FC<ArrowDownIconProps> = ({
9
+ size = 20,
10
+ strokeWidth = 2,
11
+ className,
12
+ ...props
13
+ }) => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={size}
17
+ height={size}
18
+ className={className}
19
+ fill="none"
20
+ viewBox="0 0 24 24"
21
+ stroke="currentColor"
22
+ {...props}
23
+ >
24
+ <path
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ strokeWidth={strokeWidth}
28
+ d="M19 9l-7 7-7-7"
29
+ />
30
+ </svg>
31
+ );
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const ArrowLeftIcon: React.FC<IconProps> = ({
11
+ size = 16,
12
+ color = '#000000',
13
+ strokeWidth = 1.5,
14
+ }) => (
15
+ <Svg
16
+ width={size}
17
+ height={size}
18
+ viewBox="0 0 16 16"
19
+ fill="none"
20
+ >
21
+ <Path
22
+ d="M10 12L6 8L10 4"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </Svg>
29
+ );
30
+
31
+ export { ArrowLeftIcon };
32
+ export default ArrowLeftIcon;
@@ -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 ArrowLeftIcon: React.FC<IconProps> = ({
10
+ size = 16,
11
+ color = "currentColor",
12
+ strokeWidth = 1.5,
13
+ }) => (
14
+ <svg
15
+ width={size}
16
+ height={size}
17
+ viewBox="0 0 16 16"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ >
21
+ <path
22
+ d="M10 12L6 8L10 4"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ export default ArrowLeftIcon;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ }
7
+
8
+ export const ArrowRightIcon = ({ size = 18 }: IconProps) => (
9
+ <Svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 18 18"
13
+ fill="none"
14
+ >
15
+ <Path
16
+ d="M6.75 13.5L11.25 9L6.75 4.5"
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </Svg>
22
+ );
23
+
24
+ ArrowRightIcon.displayName = "ArrowRightIcon";
25
+
26
+ export default ArrowRightIcon;
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+
3
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ /** Icon size (both width & height) in pixels */
5
+ size?: number;
6
+ }
7
+
8
+ export const ArrowRightIcon = React.forwardRef<SVGSVGElement, IconProps>(
9
+ ({ size = 18, className, ...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
+ className={className}
18
+ {...props}
19
+ >
20
+ <path
21
+ d="M6.75 13.5L11.25 9L6.75 4.5"
22
+ stroke="currentColor"
23
+ strokeWidth={"currentStrokeWidth"}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </svg>
28
+ ),
29
+ );
30
+
31
+ ArrowRightIcon.displayName = "ArrowRightIcon";
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type ArrowUpIconProps = {
5
+ size?: number;
6
+ strokeWidth?: number;
7
+ };
8
+
9
+ export const ArrowUpIcon01 = React.memo(({ size = 24, strokeWidth = 2 }: ArrowUpIconProps) => {
10
+ return (
11
+ <Svg
12
+ width={size}
13
+ height={size}
14
+ viewBox="0 0 24 24"
15
+ fill="none"
16
+ >
17
+ <Path
18
+ d="M12 19V5M12 5L5 12M12 5L19 12"
19
+ stroke="currentColor"
20
+ strokeWidth={strokeWidth}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </Svg>
25
+ );
26
+ });
27
+
28
+ ArrowUpIcon01.displayName = "ArrowUpIcon01";
29
+
30
+ export default ArrowUpIcon01;
@@ -0,0 +1,53 @@
1
+ // components/icons/ArrowUpIcon.tsx
2
+ import * as React from "react";
3
+
4
+ type ArrowUpIconProps = {
5
+ size?: number; // px
6
+ strokeWidth?: number; // SVG stroke width
7
+ className?: string; // Tailwind-friendly class hook
8
+ title?: string; // <title> for accessible name (tooltip in some UAs)
9
+ ariaLabel?: string; // explicit accessible name
10
+ } & React.SVGProps<SVGSVGElement>;
11
+
12
+ export const ArrowUpIcon01 = React.memo(
13
+ React.forwardRef<SVGSVGElement, ArrowUpIconProps>((props, ref) => {
14
+ const {
15
+ size = 24,
16
+ strokeWidth = 2,
17
+ className,
18
+ title,
19
+ ariaLabel,
20
+ ...rest
21
+ } = props;
22
+
23
+ const labelled = Boolean(ariaLabel || title);
24
+ const ariaProps = labelled
25
+ ? { role: "img", "aria-label": ariaLabel }
26
+ : { "aria-hidden": true };
27
+
28
+ return (
29
+ <svg
30
+ ref={ref}
31
+ width={size}
32
+ height={size}
33
+ viewBox="0 0 24 24"
34
+ fill="none"
35
+ xmlns="http://www.w3.org/2000/svg"
36
+ className={className}
37
+ {...ariaProps}
38
+ {...rest}
39
+ >
40
+ {title ? <title>{title}</title> : null}
41
+ <path
42
+ d="M12 19V5M12 5L5 12M12 5L19 12"
43
+ stroke="currentColor"
44
+ strokeWidth={strokeWidth}
45
+ strokeLinecap="round"
46
+ strokeLinejoin="round"
47
+ />
48
+ </svg>
49
+ );
50
+ })
51
+ );
52
+
53
+ ArrowUpIcon01.displayName = "ArrowUpIcon01";
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type ArrowUpIconProps = {
5
+ size?: number;
6
+ color?: string;
7
+ fill?: string;
8
+ };
9
+
10
+ export function ArrowUpIcon({
11
+ size = 16,
12
+ color = '#000000',
13
+ fill = "none",
14
+ }: ArrowUpIconProps) {
15
+ return (
16
+ <Svg
17
+ width={size}
18
+ height={size}
19
+ viewBox="0 0 16 16"
20
+ fill={fill}
21
+ >
22
+ <Path
23
+ d="M12 10L8 6L4 10"
24
+ stroke={color}
25
+ strokeWidth={1.5}
26
+ strokeLinejoin="round"
27
+ />
28
+ </Svg>
29
+ );
30
+ }
31
+
32
+ export default ArrowUpIcon;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+
3
+ export function ArrowUpIcon({
4
+ className,
5
+ size = 16,
6
+ stroke = "#8F8F8F",
7
+ color = "currentColor",
8
+ fill = "none",
9
+ ...props
10
+ }: React.SVGProps<SVGSVGElement> & { stroke?: string; size?: number }) {
11
+ return (
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
+ className={className}
19
+ {...props}
20
+ >
21
+ <path
22
+ d="M12 10L8 6L4 10"
23
+ stroke={color}
24
+ strokeWidth={1.5}
25
+ strokeLinejoin="round"
26
+ />
27
+ </svg>
28
+ );
29
+ }
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const ChevronLeftIcon: React.FC<IconProps> = ({
11
+ size = 16,
12
+ color = '#000000',
13
+ strokeWidth = 1.25,
14
+ }) => (
15
+ <Svg
16
+ width={size}
17
+ height={size}
18
+ viewBox="0 0 16 16"
19
+ fill="none"
20
+ >
21
+ <Path
22
+ d="M12.6654 8.0013L3.33203 8.0013M3.33203 8.0013L7.9987 12.668M3.33203 8.0013L7.9987 3.33464"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </Svg>
29
+ );
30
+
31
+ export { ChevronLeftIcon };
32
+ export default ChevronLeftIcon;
@@ -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 ChevronLeftIcon: React.FC<IconProps> = ({
10
+ size = 16,
11
+ color = "currentColor",
12
+ strokeWidth = 1.25,
13
+ }) => (
14
+ <svg
15
+ width={size}
16
+ height={size}
17
+ viewBox="0 0 16 16"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ >
21
+ <path
22
+ d="M12.6654 8.0013L3.33203 8.0013M3.33203 8.0013L7.9987 12.668M3.33203 8.0013L7.9987 3.33464"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ );
30
+
31
+ export default ChevronLeftIcon;
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const ChevronSelectorIcon: React.FC<IconProps> = ({
11
+ size = 24,
12
+ color = '#000000',
13
+ strokeWidth = 2,
14
+ }) => (
15
+ <Svg
16
+ width={size}
17
+ height={size}
18
+ viewBox="0 0 20 20"
19
+ fill="none"
20
+ >
21
+ <Path
22
+ d="M5.83325 12.4999L9.99992 16.6666L14.1666 12.4999M5.83325 7.49992L9.99992 3.33325L14.1666 7.49992"
23
+ stroke={color}
24
+ strokeWidth={strokeWidth}
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </Svg>
29
+ );
30
+
31
+ export { ChevronSelectorIcon };
32
+ export default ChevronSelectorIcon;
@@ -0,0 +1,33 @@
1
+ // components/icons/ChevronSelectorIcon.tsx
2
+ "use client"
3
+ import React from "react";
4
+
5
+ interface IconProps {
6
+ size?: number;
7
+ color?: string;
8
+ strokeWidth?: number;
9
+ }
10
+
11
+ const ChevronSelectorIcon: React.FC<IconProps> = ({
12
+ size = 24,
13
+ color = "currentColor",
14
+ strokeWidth = 2,
15
+ }) => (
16
+ <svg
17
+ width={size}
18
+ height={size}
19
+ viewBox="0 0 20 20"
20
+ fill="none"
21
+ >
22
+ <path
23
+ d="M5.83325 12.4999L9.99992 16.6666L14.1666 12.4999M5.83325 7.49992L9.99992 3.33325L14.1666 7.49992"
24
+ stroke={color}
25
+ strokeWidth={strokeWidth}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </svg>
30
+ );
31
+
32
+ export default ChevronSelectorIcon;
33
+
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ type IconProps = {
5
+ width?: number | string;
6
+ height?: number | string;
7
+ };
8
+
9
+ export function NarrowUpRightIcon({ width = 18, height = 18 }: IconProps) {
10
+ return (
11
+ <Svg
12
+ width={width}
13
+ height={height}
14
+ viewBox="0 0 18 18"
15
+ fill="none"
16
+ >
17
+ <Path
18
+ d="M4.5 13.5L13.5 4.5M13.5 4.5H7.5M13.5 4.5V10.5"
19
+ stroke="currentColor"
20
+ strokeWidth={1.25}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </Svg>
25
+ );
26
+ }
27
+
28
+ export default NarrowUpRightIcon;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+
3
+ type IconProps = React.SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ };
6
+
7
+ export function NarrowUpRightIcon({ title, ...props }: IconProps) {
8
+ return (
9
+ <svg
10
+ width="18"
11
+ height="18"
12
+ viewBox="0 0 18 18"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ aria-hidden={title ? undefined : true}
16
+ role={title ? "img" : "presentation"}
17
+ {...props}
18
+ >
19
+ {title ? <title>{title}</title> : null}
20
+ <path
21
+ d="M4.5 13.5L13.5 4.5M13.5 4.5H7.5M13.5 4.5V10.5"
22
+ stroke="currentColor"
23
+ strokeWidth={1.25}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </svg>
28
+ );
29
+ }
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface SwitchHorizontal02IconProps {
5
+ size?: number;
6
+ }
7
+
8
+ const SwitchHorizontal02Icon: React.FC<SwitchHorizontal02IconProps> = ({
9
+ size = 18,
10
+ }) => (
11
+ <Svg
12
+ width={size}
13
+ height={size}
14
+ viewBox="0 0 18 18"
15
+ fill="none"
16
+ >
17
+ <Path
18
+ d="M3 12.75H15M15 12.75L12 9.75M15 12.75L12 15.75M15 5.25H3M3 5.25L6 2.25M3 5.25L6 8.25"
19
+ stroke="currentColor"
20
+ strokeWidth={1.5}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ </Svg>
25
+ );
26
+
27
+ export { SwitchHorizontal02Icon };
28
+ export default SwitchHorizontal02Icon;
@@ -0,0 +1,39 @@
1
+ import * as React from "react";
2
+ import { SVGProps } from "react";
3
+
4
+ interface SwitchHorizontal02IconProps extends SVGProps<SVGSVGElement> {
5
+ /**
6
+ * Size of the icon (width and height). Default is 18.
7
+ */
8
+ size?: number;
9
+ }
10
+
11
+ /**
12
+ * A reusable "Switch Horizontal 02" icon component.
13
+ *
14
+ * @param size - width and height of the SVG in pixels.
15
+ * @param props - additional SVG props such as className or style.
16
+ */
17
+ const SwitchHorizontal02Icon: React.FC<SwitchHorizontal02IconProps> = ({
18
+ size = 18,
19
+ ...props
20
+ }) => (
21
+ <svg
22
+ width={size}
23
+ height={size}
24
+ viewBox="0 0 18 18"
25
+ fill="none"
26
+ xmlns="http://www.w3.org/2000/svg"
27
+ {...props}
28
+ >
29
+ <path
30
+ d="M3 12.75H15M15 12.75L12 9.75M15 12.75L12 15.75M15 5.25H3M3 5.25L6 2.25M3 5.25L6 8.25"
31
+ stroke="currentColor"
32
+ strokeWidth={1.5}
33
+ strokeLinecap="round"
34
+ strokeLinejoin="round"
35
+ />
36
+ </svg>
37
+ );
38
+
39
+ export default SwitchHorizontal02Icon;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface UTurnIconProps {
5
+ size?: number;
6
+ strokeWidth?: number;
7
+ }
8
+
9
+ export const UTurnIcon = ({ size = 17, strokeWidth }: UTurnIconProps) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 17 17"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M2.83203 4.95833H9.91536C12.2626 4.95833 14.1654 6.86112 14.1654 9.20833C14.1654 11.5555 12.2626 13.4583 9.91536 13.4583H2.83203M2.83203 4.95833L5.66536 2.125M2.83203 4.95833L5.66536 7.79167"
18
+ stroke="currentColor"
19
+ strokeWidth={strokeWidth}
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </Svg>
24
+ );
25
+
26
+ UTurnIcon.displayName = "UTurnIcon";
27
+
28
+ export default UTurnIcon;