@stream-io/video-react-native-sdk 0.0.1-alpha.141

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 (360) hide show
  1. package/CHANGELOG.md +739 -0
  2. package/LICENSE +219 -0
  3. package/README.md +19 -0
  4. package/dist/__tests__/components/ActiveCall.test.d.ts +1 -0
  5. package/dist/__tests__/components/ActiveCall.test.js +89 -0
  6. package/dist/__tests__/components/ActiveCall.test.js.map +1 -0
  7. package/dist/__tests__/components/Avatar.test.d.ts +1 -0
  8. package/dist/__tests__/components/Avatar.test.js +34 -0
  9. package/dist/__tests__/components/Avatar.test.js.map +1 -0
  10. package/dist/__tests__/components/ParticipantView.test.d.ts +1 -0
  11. package/dist/__tests__/components/ParticipantView.test.js +66 -0
  12. package/dist/__tests__/components/ParticipantView.test.js.map +1 -0
  13. package/dist/__tests__/mocks/call.d.ts +2 -0
  14. package/dist/__tests__/mocks/call.js +21 -0
  15. package/dist/__tests__/mocks/call.js.map +1 -0
  16. package/dist/__tests__/mocks/client.d.ts +2 -0
  17. package/dist/__tests__/mocks/client.js +31 -0
  18. package/dist/__tests__/mocks/client.js.map +1 -0
  19. package/dist/__tests__/mocks/participant.d.ts +3 -0
  20. package/dist/__tests__/mocks/participant.js +25 -0
  21. package/dist/__tests__/mocks/participant.js.map +1 -0
  22. package/dist/__tests__/utils/RNTLTools.d.ts +15 -0
  23. package/dist/__tests__/utils/RNTLTools.js +54 -0
  24. package/dist/__tests__/utils/RNTLTools.js.map +1 -0
  25. package/dist/index.d.ts +9 -0
  26. package/dist/index.js +39 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/jest-setup.d.ts +1 -0
  29. package/dist/jest-setup.js +34 -0
  30. package/dist/jest-setup.js.map +1 -0
  31. package/dist/src/components/ActiveCall.d.ts +18 -0
  32. package/dist/src/components/ActiveCall.js +117 -0
  33. package/dist/src/components/ActiveCall.js.map +1 -0
  34. package/dist/src/components/Avatar.d.ts +25 -0
  35. package/dist/src/components/Avatar.js +55 -0
  36. package/dist/src/components/Avatar.js.map +1 -0
  37. package/dist/src/components/CallControlsButton.d.ts +22 -0
  38. package/dist/src/components/CallControlsButton.js +43 -0
  39. package/dist/src/components/CallControlsButton.js.map +1 -0
  40. package/dist/src/components/CallControlsView.d.ts +9 -0
  41. package/dist/src/components/CallControlsView.js +95 -0
  42. package/dist/src/components/CallControlsView.js.map +1 -0
  43. package/dist/src/components/CallParticipantsBadge.d.ts +1 -0
  44. package/dist/src/components/CallParticipantsBadge.js +48 -0
  45. package/dist/src/components/CallParticipantsBadge.js.map +1 -0
  46. package/dist/src/components/CallParticipantsInfoView.d.ts +21 -0
  47. package/dist/src/components/CallParticipantsInfoView.js +213 -0
  48. package/dist/src/components/CallParticipantsInfoView.js.map +1 -0
  49. package/dist/src/components/CallParticipantsList.d.ts +25 -0
  50. package/dist/src/components/CallParticipantsList.js +124 -0
  51. package/dist/src/components/CallParticipantsList.js.map +1 -0
  52. package/dist/src/components/CallParticipantsOptions.d.ts +8 -0
  53. package/dist/src/components/CallParticipantsOptions.js +189 -0
  54. package/dist/src/components/CallParticipantsOptions.js.map +1 -0
  55. package/dist/src/components/CallParticipantsSpotlightView.d.ts +1 -0
  56. package/dist/src/components/CallParticipantsSpotlightView.js +40 -0
  57. package/dist/src/components/CallParticipantsSpotlightView.js.map +1 -0
  58. package/dist/src/components/CallParticipantsView.d.ts +1 -0
  59. package/dist/src/components/CallParticipantsView.js +31 -0
  60. package/dist/src/components/CallParticipantsView.js.map +1 -0
  61. package/dist/src/components/IncomingCallView.d.ts +1 -0
  62. package/dist/src/components/IncomingCallView.js +98 -0
  63. package/dist/src/components/IncomingCallView.js.map +1 -0
  64. package/dist/src/components/LobbyView.d.ts +1 -0
  65. package/dist/src/components/LobbyView.js +215 -0
  66. package/dist/src/components/LobbyView.js.map +1 -0
  67. package/dist/src/components/LocalVideoView.d.ts +34 -0
  68. package/dist/src/components/LocalVideoView.js +100 -0
  69. package/dist/src/components/LocalVideoView.js.map +1 -0
  70. package/dist/src/components/NetworkQualityIndicator.d.ts +8 -0
  71. package/dist/src/components/NetworkQualityIndicator.js +36 -0
  72. package/dist/src/components/NetworkQualityIndicator.js.map +1 -0
  73. package/dist/src/components/OutgoingCallView.d.ts +1 -0
  74. package/dist/src/components/OutgoingCallView.js +103 -0
  75. package/dist/src/components/OutgoingCallView.js.map +1 -0
  76. package/dist/src/components/ParticipantReaction.d.ts +7 -0
  77. package/dist/src/components/ParticipantReaction.js +45 -0
  78. package/dist/src/components/ParticipantReaction.js.map +1 -0
  79. package/dist/src/components/ParticipantView.d.ts +42 -0
  80. package/dist/src/components/ParticipantView.js +256 -0
  81. package/dist/src/components/ParticipantView.js.map +1 -0
  82. package/dist/src/components/ReactionsModal.d.ts +7 -0
  83. package/dist/src/components/ReactionsModal.js +65 -0
  84. package/dist/src/components/ReactionsModal.js.map +1 -0
  85. package/dist/src/components/ToggleAudioButton.d.ts +1 -0
  86. package/dist/src/components/ToggleAudioButton.js +78 -0
  87. package/dist/src/components/ToggleAudioButton.js.map +1 -0
  88. package/dist/src/components/ToggleVideoButton.d.ts +1 -0
  89. package/dist/src/components/ToggleVideoButton.js +78 -0
  90. package/dist/src/components/ToggleVideoButton.js.map +1 -0
  91. package/dist/src/components/UserInfoView.d.ts +13 -0
  92. package/dist/src/components/UserInfoView.js +82 -0
  93. package/dist/src/components/UserInfoView.js.map +1 -0
  94. package/dist/src/components/VideoRenderer.d.ts +65 -0
  95. package/dist/src/components/VideoRenderer.js +18 -0
  96. package/dist/src/components/VideoRenderer.js.map +1 -0
  97. package/dist/src/components/index.d.ts +12 -0
  98. package/dist/src/components/index.js +29 -0
  99. package/dist/src/components/index.js.map +1 -0
  100. package/dist/src/constants/A11yLabels.d.ts +20 -0
  101. package/dist/src/constants/A11yLabels.js +29 -0
  102. package/dist/src/constants/A11yLabels.js.map +1 -0
  103. package/dist/src/constants/index.d.ts +11 -0
  104. package/dist/src/constants/index.js +30 -0
  105. package/dist/src/constants/index.js.map +1 -0
  106. package/dist/src/contexts/StreamVideoContext/createStoreContext.d.ts +14 -0
  107. package/dist/src/contexts/StreamVideoContext/createStoreContext.js +100 -0
  108. package/dist/src/contexts/StreamVideoContext/createStoreContext.js.map +1 -0
  109. package/dist/src/contexts/StreamVideoContext/index.d.ts +30 -0
  110. package/dist/src/contexts/StreamVideoContext/index.js +18 -0
  111. package/dist/src/contexts/StreamVideoContext/index.js.map +1 -0
  112. package/dist/src/contexts/index.d.ts +1 -0
  113. package/dist/src/contexts/index.js +18 -0
  114. package/dist/src/contexts/index.js.map +1 -0
  115. package/dist/src/hooks/index.d.ts +10 -0
  116. package/dist/src/hooks/index.js +27 -0
  117. package/dist/src/hooks/index.js.map +1 -0
  118. package/dist/src/hooks/useCallControls.d.ts +14 -0
  119. package/dist/src/hooks/useCallControls.js +148 -0
  120. package/dist/src/hooks/useCallControls.js.map +1 -0
  121. package/dist/src/hooks/useCallCycleEffect.d.ts +8 -0
  122. package/dist/src/hooks/useCallCycleEffect.js +62 -0
  123. package/dist/src/hooks/useCallCycleEffect.js.map +1 -0
  124. package/dist/src/hooks/useCallKeep.d.ts +11 -0
  125. package/dist/src/hooks/useCallKeep.js +41 -0
  126. package/dist/src/hooks/useCallKeep.js.map +1 -0
  127. package/dist/src/hooks/useCreateStreamVideoClient.d.ts +33 -0
  128. package/dist/src/hooks/useCreateStreamVideoClient.js +40 -0
  129. package/dist/src/hooks/useCreateStreamVideoClient.js.map +1 -0
  130. package/dist/src/hooks/useIncallManager.d.ts +13 -0
  131. package/dist/src/hooks/useIncallManager.js +24 -0
  132. package/dist/src/hooks/useIncallManager.js.map +1 -0
  133. package/dist/src/hooks/useLocalVideoStream.d.ts +7 -0
  134. package/dist/src/hooks/useLocalVideoStream.js +34 -0
  135. package/dist/src/hooks/useLocalVideoStream.js.map +1 -0
  136. package/dist/src/hooks/useMutingState.d.ts +12 -0
  137. package/dist/src/hooks/useMutingState.js +25 -0
  138. package/dist/src/hooks/useMutingState.js.map +1 -0
  139. package/dist/src/hooks/usePermissionNotification.d.ts +18 -0
  140. package/dist/src/hooks/usePermissionNotification.js +33 -0
  141. package/dist/src/hooks/usePermissionNotification.js.map +1 -0
  142. package/dist/src/hooks/usePermissionRequest.d.ts +1 -0
  143. package/dist/src/hooks/usePermissionRequest.js +62 -0
  144. package/dist/src/hooks/usePermissionRequest.js.map +1 -0
  145. package/dist/src/hooks/usePublishMediaStreams.d.ts +6 -0
  146. package/dist/src/hooks/usePublishMediaStreams.js +49 -0
  147. package/dist/src/hooks/usePublishMediaStreams.js.map +1 -0
  148. package/dist/src/icons/ArrowRight.d.ts +5 -0
  149. package/dist/src/icons/ArrowRight.js +9 -0
  150. package/dist/src/icons/ArrowRight.js.map +1 -0
  151. package/dist/src/icons/CameraSwitch.d.ts +5 -0
  152. package/dist/src/icons/CameraSwitch.js +9 -0
  153. package/dist/src/icons/CameraSwitch.js.map +1 -0
  154. package/dist/src/icons/Chat.d.ts +5 -0
  155. package/dist/src/icons/Chat.js +9 -0
  156. package/dist/src/icons/Chat.js.map +1 -0
  157. package/dist/src/icons/Cross.d.ts +5 -0
  158. package/dist/src/icons/Cross.js +9 -0
  159. package/dist/src/icons/Cross.js.map +1 -0
  160. package/dist/src/icons/Mic.d.ts +5 -0
  161. package/dist/src/icons/Mic.js +10 -0
  162. package/dist/src/icons/Mic.js.map +1 -0
  163. package/dist/src/icons/MicOff.d.ts +5 -0
  164. package/dist/src/icons/MicOff.js +9 -0
  165. package/dist/src/icons/MicOff.js.map +1 -0
  166. package/dist/src/icons/Participants.d.ts +5 -0
  167. package/dist/src/icons/Participants.js +9 -0
  168. package/dist/src/icons/Participants.js.map +1 -0
  169. package/dist/src/icons/Phone.d.ts +5 -0
  170. package/dist/src/icons/Phone.js +9 -0
  171. package/dist/src/icons/Phone.js.map +1 -0
  172. package/dist/src/icons/PhoneDown.d.ts +5 -0
  173. package/dist/src/icons/PhoneDown.js +10 -0
  174. package/dist/src/icons/PhoneDown.js.map +1 -0
  175. package/dist/src/icons/Pin.d.ts +5 -0
  176. package/dist/src/icons/Pin.js +9 -0
  177. package/dist/src/icons/Pin.js.map +1 -0
  178. package/dist/src/icons/Reaction.d.ts +5 -0
  179. package/dist/src/icons/Reaction.js +9 -0
  180. package/dist/src/icons/Reaction.js.map +1 -0
  181. package/dist/src/icons/ScreenShare.d.ts +5 -0
  182. package/dist/src/icons/ScreenShare.js +40 -0
  183. package/dist/src/icons/ScreenShare.js.map +1 -0
  184. package/dist/src/icons/Settings.d.ts +5 -0
  185. package/dist/src/icons/Settings.js +34 -0
  186. package/dist/src/icons/Settings.js.map +1 -0
  187. package/dist/src/icons/Spotlight.d.ts +5 -0
  188. package/dist/src/icons/Spotlight.js +9 -0
  189. package/dist/src/icons/Spotlight.js.map +1 -0
  190. package/dist/src/icons/ThreeDots.d.ts +5 -0
  191. package/dist/src/icons/ThreeDots.js +11 -0
  192. package/dist/src/icons/ThreeDots.js.map +1 -0
  193. package/dist/src/icons/Video.d.ts +5 -0
  194. package/dist/src/icons/Video.js +9 -0
  195. package/dist/src/icons/Video.js.map +1 -0
  196. package/dist/src/icons/VideoDisabled.d.ts +5 -0
  197. package/dist/src/icons/VideoDisabled.js +10 -0
  198. package/dist/src/icons/VideoDisabled.js.map +1 -0
  199. package/dist/src/icons/VideoOff.d.ts +5 -0
  200. package/dist/src/icons/VideoOff.js +10 -0
  201. package/dist/src/icons/VideoOff.js.map +1 -0
  202. package/dist/src/icons/VideoSlash.d.ts +5 -0
  203. package/dist/src/icons/VideoSlash.js +10 -0
  204. package/dist/src/icons/VideoSlash.js.map +1 -0
  205. package/dist/src/icons/index.d.ts +19 -0
  206. package/dist/src/icons/index.js +36 -0
  207. package/dist/src/icons/index.js.map +1 -0
  208. package/dist/src/providers/MediaDevices.d.ts +9 -0
  209. package/dist/src/providers/MediaDevices.js +43 -0
  210. package/dist/src/providers/MediaDevices.js.map +1 -0
  211. package/dist/src/providers/StreamCall.d.ts +81 -0
  212. package/dist/src/providers/StreamCall.js +74 -0
  213. package/dist/src/providers/StreamCall.js.map +1 -0
  214. package/dist/src/providers/StreamVideo.d.ts +10 -0
  215. package/dist/src/providers/StreamVideo.js +66 -0
  216. package/dist/src/providers/StreamVideo.js.map +1 -0
  217. package/dist/src/providers/index.d.ts +2 -0
  218. package/dist/src/providers/index.js +19 -0
  219. package/dist/src/providers/index.js.map +1 -0
  220. package/dist/src/theme/avatar.d.ts +2 -0
  221. package/dist/src/theme/avatar.js +11 -0
  222. package/dist/src/theme/avatar.js.map +1 -0
  223. package/dist/src/theme/button.d.ts +2 -0
  224. package/dist/src/theme/button.js +11 -0
  225. package/dist/src/theme/button.js.map +1 -0
  226. package/dist/src/theme/colors.d.ts +3 -0
  227. package/dist/src/theme/colors.js +49 -0
  228. package/dist/src/theme/colors.js.map +1 -0
  229. package/dist/src/theme/constants.d.ts +47 -0
  230. package/dist/src/theme/constants.js +54 -0
  231. package/dist/src/theme/constants.js.map +1 -0
  232. package/dist/src/theme/fonts.d.ts +2 -0
  233. package/dist/src/theme/fonts.js +67 -0
  234. package/dist/src/theme/fonts.js.map +1 -0
  235. package/dist/src/theme/icon.d.ts +2 -0
  236. package/dist/src/theme/icon.js +11 -0
  237. package/dist/src/theme/icon.js.map +1 -0
  238. package/dist/src/theme/index.d.ts +2 -0
  239. package/dist/src/theme/index.js +26 -0
  240. package/dist/src/theme/index.js.map +1 -0
  241. package/dist/src/theme/margin.d.ts +2 -0
  242. package/dist/src/theme/margin.js +11 -0
  243. package/dist/src/theme/margin.js.map +1 -0
  244. package/dist/src/theme/padding.d.ts +2 -0
  245. package/dist/src/theme/padding.js +11 -0
  246. package/dist/src/theme/padding.js.map +1 -0
  247. package/dist/src/theme/rounded.d.ts +2 -0
  248. package/dist/src/theme/rounded.js +11 -0
  249. package/dist/src/theme/rounded.js.map +1 -0
  250. package/dist/src/theme/spacing.d.ts +2 -0
  251. package/dist/src/theme/spacing.js +11 -0
  252. package/dist/src/theme/spacing.js.map +1 -0
  253. package/dist/src/theme/types.d.ts +45 -0
  254. package/dist/src/theme/types.js +3 -0
  255. package/dist/src/theme/types.js.map +1 -0
  256. package/dist/src/utils/StreamVideoRN.d.ts +25 -0
  257. package/dist/src/utils/StreamVideoRN.js +23 -0
  258. package/dist/src/utils/StreamVideoRN.js.map +1 -0
  259. package/dist/src/utils/hooks/index.d.ts +3 -0
  260. package/dist/src/utils/hooks/index.js +20 -0
  261. package/dist/src/utils/hooks/index.js.map +1 -0
  262. package/dist/src/utils/hooks/useAppStateListener.d.ts +1 -0
  263. package/dist/src/utils/hooks/useAppStateListener.js +41 -0
  264. package/dist/src/utils/hooks/useAppStateListener.js.map +1 -0
  265. package/dist/src/utils/hooks/useDebouncedValue.d.ts +7 -0
  266. package/dist/src/utils/hooks/useDebouncedValue.js +22 -0
  267. package/dist/src/utils/hooks/useDebouncedValue.js.map +1 -0
  268. package/dist/src/utils/hooks/usePrevious.d.ts +1 -0
  269. package/dist/src/utils/hooks/usePrevious.js +13 -0
  270. package/dist/src/utils/hooks/usePrevious.js.map +1 -0
  271. package/dist/src/utils/index.d.ts +5 -0
  272. package/dist/src/utils/index.js +53 -0
  273. package/dist/src/utils/index.js.map +1 -0
  274. package/dist/src/utils/verifyAndroidBluetoothPermissions.d.ts +1 -0
  275. package/dist/src/utils/verifyAndroidBluetoothPermissions.js +30 -0
  276. package/dist/src/utils/verifyAndroidBluetoothPermissions.js.map +1 -0
  277. package/index.ts +22 -0
  278. package/package.json +70 -0
  279. package/src/components/ActiveCall.tsx +122 -0
  280. package/src/components/Avatar.tsx +88 -0
  281. package/src/components/CallControlsButton.tsx +72 -0
  282. package/src/components/CallControlsView.tsx +128 -0
  283. package/src/components/CallParticipantsBadge.tsx +57 -0
  284. package/src/components/CallParticipantsInfoView.tsx +287 -0
  285. package/src/components/CallParticipantsList.tsx +172 -0
  286. package/src/components/CallParticipantsOptions.tsx +248 -0
  287. package/src/components/CallParticipantsSpotlightView.tsx +53 -0
  288. package/src/components/CallParticipantsView.tsx +30 -0
  289. package/src/components/IncomingCallView.tsx +133 -0
  290. package/src/components/LobbyView.tsx +236 -0
  291. package/src/components/LocalVideoView.tsx +141 -0
  292. package/src/components/NetworkQualityIndicator.tsx +72 -0
  293. package/src/components/OutgoingCallView.tsx +133 -0
  294. package/src/components/ParticipantReaction.tsx +59 -0
  295. package/src/components/ParticipantView.tsx +315 -0
  296. package/src/components/ReactionsModal.tsx +90 -0
  297. package/src/components/ToggleAudioButton.tsx +103 -0
  298. package/src/components/ToggleVideoButton.tsx +103 -0
  299. package/src/components/UserInfoView.tsx +118 -0
  300. package/src/components/VideoRenderer.tsx +85 -0
  301. package/src/components/index.ts +12 -0
  302. package/src/constants/A11yLabels.ts +24 -0
  303. package/src/constants/index.ts +28 -0
  304. package/src/contexts/StreamVideoContext/createStoreContext.tsx +117 -0
  305. package/src/contexts/StreamVideoContext/index.tsx +37 -0
  306. package/src/contexts/index.ts +1 -0
  307. package/src/hooks/index.ts +10 -0
  308. package/src/hooks/useCallControls.tsx +186 -0
  309. package/src/hooks/useCallCycleEffect.tsx +68 -0
  310. package/src/hooks/useCallKeep.tsx +51 -0
  311. package/src/hooks/useCreateStreamVideoClient.tsx +77 -0
  312. package/src/hooks/useIncallManager.tsx +23 -0
  313. package/src/hooks/useLocalVideoStream.ts +36 -0
  314. package/src/hooks/useMutingState.ts +24 -0
  315. package/src/hooks/usePermissionNotification.tsx +53 -0
  316. package/src/hooks/usePermissionRequest.tsx +67 -0
  317. package/src/hooks/usePublishMediaStreams.ts +59 -0
  318. package/src/icons/ArrowRight.tsx +16 -0
  319. package/src/icons/CameraSwitch.tsx +14 -0
  320. package/src/icons/Chat.tsx +14 -0
  321. package/src/icons/Cross.tsx +14 -0
  322. package/src/icons/Mic.tsx +18 -0
  323. package/src/icons/MicOff.tsx +14 -0
  324. package/src/icons/Participants.tsx +16 -0
  325. package/src/icons/Phone.tsx +14 -0
  326. package/src/icons/PhoneDown.tsx +15 -0
  327. package/src/icons/Pin.tsx +16 -0
  328. package/src/icons/Reaction.tsx +14 -0
  329. package/src/icons/ScreenShare.tsx +32 -0
  330. package/src/icons/Settings.tsx +13 -0
  331. package/src/icons/Spotlight.tsx +16 -0
  332. package/src/icons/ThreeDots.tsx +13 -0
  333. package/src/icons/Video.tsx +14 -0
  334. package/src/icons/VideoDisabled.tsx +22 -0
  335. package/src/icons/VideoOff.tsx +20 -0
  336. package/src/icons/VideoSlash.tsx +15 -0
  337. package/src/icons/index.tsx +19 -0
  338. package/src/providers/MediaDevices.tsx +45 -0
  339. package/src/providers/StreamCall.tsx +136 -0
  340. package/src/providers/StreamVideo.tsx +50 -0
  341. package/src/providers/index.ts +2 -0
  342. package/src/theme/avatar.ts +9 -0
  343. package/src/theme/button.ts +9 -0
  344. package/src/theme/colors.ts +49 -0
  345. package/src/theme/constants.ts +51 -0
  346. package/src/theme/fonts.ts +65 -0
  347. package/src/theme/icon.ts +9 -0
  348. package/src/theme/index.ts +25 -0
  349. package/src/theme/margin.ts +9 -0
  350. package/src/theme/padding.ts +9 -0
  351. package/src/theme/rounded.ts +9 -0
  352. package/src/theme/spacing.ts +9 -0
  353. package/src/theme/types.ts +64 -0
  354. package/src/utils/StreamVideoRN.ts +35 -0
  355. package/src/utils/hooks/index.ts +3 -0
  356. package/src/utils/hooks/useAppStateListener.ts +48 -0
  357. package/src/utils/hooks/useDebouncedValue.ts +21 -0
  358. package/src/utils/hooks/usePrevious.ts +11 -0
  359. package/src/utils/index.ts +45 -0
  360. package/src/utils/verifyAndroidBluetoothPermissions.ts +31 -0
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.usePermissionRequest = void 0;
4
+ const video_client_1 = require("@stream-io/video-client");
5
+ const video_react_bindings_1 = require("@stream-io/video-react-bindings");
6
+ const react_1 = require("react");
7
+ const react_native_1 = require("react-native");
8
+ const usePermissionRequest = () => {
9
+ const call = (0, video_react_bindings_1.useCall)();
10
+ const userHasUpdateCallPermissionsCapability = (0, video_react_bindings_1.useHasPermissions)(video_client_1.OwnCapability.UPDATE_CALL_PERMISSIONS);
11
+ const messageForPermission = (userName, permission) => {
12
+ switch (permission) {
13
+ case video_client_1.OwnCapability.SEND_AUDIO:
14
+ return `${userName} is requesting to speak`;
15
+ case video_client_1.OwnCapability.SEND_VIDEO:
16
+ return `${userName} is requesting to share their camera`;
17
+ case video_client_1.OwnCapability.SCREENSHARE:
18
+ return `${userName} is requesting to present their screen`;
19
+ default:
20
+ return `${userName} is requesting permission: ${permission}`;
21
+ }
22
+ };
23
+ const handleUpdatePermission = (0, react_1.useCallback)((request, allow) => {
24
+ return async () => {
25
+ const { user, permissions } = request;
26
+ try {
27
+ if (allow) {
28
+ await call?.grantPermissions(user.id, permissions);
29
+ }
30
+ else {
31
+ await call?.revokePermissions(user.id, permissions);
32
+ }
33
+ }
34
+ catch (err) {
35
+ console.log(err);
36
+ }
37
+ };
38
+ }, [call]);
39
+ (0, react_1.useEffect)(() => {
40
+ if (!call || !userHasUpdateCallPermissionsCapability)
41
+ return;
42
+ return call.on('call.permission_request', (event) => {
43
+ if (event.type !== 'call.permission_request')
44
+ return;
45
+ const { user, permissions } = event;
46
+ permissions.forEach((permission) => {
47
+ return react_native_1.Alert.alert('Permissions Request', messageForPermission(user.name ?? user.id, permission), [
48
+ {
49
+ text: 'Reject',
50
+ onPress: handleUpdatePermission(event, false),
51
+ },
52
+ {
53
+ text: 'Allow',
54
+ onPress: handleUpdatePermission(event, true),
55
+ },
56
+ ]);
57
+ });
58
+ });
59
+ }, [call, userHasUpdateCallPermissionsCapability, handleUpdatePermission]);
60
+ };
61
+ exports.usePermissionRequest = usePermissionRequest;
62
+ //# sourceMappingURL=usePermissionRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePermissionRequest.js","sourceRoot":"","sources":["../../../src/hooks/usePermissionRequest.tsx"],"names":[],"mappings":";;;AAAA,0DAAgF;AAChF,0EAA6E;AAC7E,iCAA+C;AAC/C,+CAAqC;AAE9B,MAAM,oBAAoB,GAAG,GAAG,EAAE;IACvC,MAAM,IAAI,GAAG,IAAA,8BAAO,GAAE,CAAC;IAEvB,MAAM,sCAAsC,GAAG,IAAA,wCAAiB,EAC9D,4BAAa,CAAC,uBAAuB,CACtC,CAAC;IAEF,MAAM,oBAAoB,GAAG,CAAC,QAAgB,EAAE,UAAkB,EAAE,EAAE;QACpE,QAAQ,UAAU,EAAE;YAClB,KAAK,4BAAa,CAAC,UAAU;gBAC3B,OAAO,GAAG,QAAQ,yBAAyB,CAAC;YAC9C,KAAK,4BAAa,CAAC,UAAU;gBAC3B,OAAO,GAAG,QAAQ,sCAAsC,CAAC;YAC3D,KAAK,4BAAa,CAAC,WAAW;gBAC5B,OAAO,GAAG,QAAQ,wCAAwC,CAAC;YAC7D;gBACE,OAAO,GAAG,QAAQ,8BAA8B,UAAU,EAAE,CAAC;SAChE;IACH,CAAC,CAAC;IAEF,MAAM,sBAAsB,GAAG,IAAA,mBAAW,EACxC,CAAC,OAA+B,EAAE,KAAc,EAAE,EAAE;QAClD,OAAO,KAAK,IAAI,EAAE;YAChB,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC;YACtC,IAAI;gBACF,IAAI,KAAK,EAAE;oBACT,MAAM,IAAI,EAAE,gBAAgB,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC;iBACpD;qBAAM;oBACL,MAAM,IAAI,EAAE,iBAAiB,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC;iBACrD;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aAClB;QACH,CAAC,CAAC;IACJ,CAAC,EACD,CAAC,IAAI,CAAC,CACP,CAAC;IAEF,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IAAI,CAAC,IAAI,IAAI,CAAC,sCAAsC;YAAE,OAAO;QAC7D,OAAO,IAAI,CAAC,EAAE,CAAC,yBAAyB,EAAE,CAAC,KAAK,EAAE,EAAE;YAClD,IAAI,KAAK,CAAC,IAAI,KAAK,yBAAyB;gBAAE,OAAO;YACrD,MAAM,EAAE,IAAI,EAAE,WAAW,EAAE,GAAG,KAAK,CAAC;YACpC,WAAW,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;gBACjC,OAAO,oBAAK,CAAC,KAAK,CAChB,qBAAqB,EACrB,oBAAoB,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,EAAE,EAAE,UAAU,CAAC,EACtD;oBACE;wBACE,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,sBAAsB,CAAC,KAAK,EAAE,KAAK,CAAC;qBAC9C;oBACD;wBACE,IAAI,EAAE,OAAO;wBACb,OAAO,EAAE,sBAAsB,CAAC,KAAK,EAAE,IAAI,CAAC;qBAC7C;iBACF,CACF,CAAC;YACJ,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC,EAAE,CAAC,IAAI,EAAE,sCAAsC,EAAE,sBAAsB,CAAC,CAAC,CAAC;AAC7E,CAAC,CAAC;AA7DW,QAAA,oBAAoB,wBA6D/B"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * A helper hook that takes care of publishing audio and video streams of the active call.
3
+ *
4
+ * @category Device Management
5
+ */
6
+ export declare const usePublishMediaStreams: () => void;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.usePublishMediaStreams = void 0;
4
+ const video_react_bindings_1 = require("@stream-io/video-react-bindings");
5
+ const StreamVideoContext_1 = require("../contexts/StreamVideoContext");
6
+ const video_client_1 = require("@stream-io/video-client");
7
+ const react_1 = require("react");
8
+ /**
9
+ * A helper hook that takes care of publishing audio and video streams of the active call.
10
+ *
11
+ * @category Device Management
12
+ */
13
+ const usePublishMediaStreams = () => {
14
+ const activeCall = (0, video_react_bindings_1.useCall)();
15
+ const currentAudioDevice = (0, StreamVideoContext_1.useStreamVideoStoreValue)((store) => store.currentAudioDevice);
16
+ const currentVideoDevice = (0, StreamVideoContext_1.useStreamVideoStoreValue)((store) => store.currentVideoDevice);
17
+ const isVideoMuted = (0, StreamVideoContext_1.useStreamVideoStoreValue)((store) => store.isVideoMuted);
18
+ const isAudioMuted = (0, StreamVideoContext_1.useStreamVideoStoreValue)((store) => store.isAudioMuted);
19
+ (0, react_1.useEffect)(() => {
20
+ if (!activeCall?.permissionsContext.hasPermission(video_client_1.OwnCapability.SEND_AUDIO)) {
21
+ console.log(`No permission to publish audio`);
22
+ return;
23
+ }
24
+ if (currentAudioDevice && !isAudioMuted) {
25
+ (0, video_client_1.getAudioStream)(currentAudioDevice.deviceId)
26
+ .then((stream) => activeCall?.publishAudioStream(stream))
27
+ .catch((error) => {
28
+ console.log(error);
29
+ });
30
+ }
31
+ }, [activeCall, currentAudioDevice, isAudioMuted]);
32
+ (0, react_1.useEffect)(() => {
33
+ if (!activeCall?.permissionsContext.hasPermission(video_client_1.OwnCapability.SEND_VIDEO)) {
34
+ console.log(`No permission to publish video`);
35
+ return;
36
+ }
37
+ if (currentVideoDevice && !isVideoMuted) {
38
+ (0, video_client_1.getVideoStream)(currentVideoDevice.deviceId)
39
+ .then((stream) => {
40
+ activeCall?.publishVideoStream(stream);
41
+ })
42
+ .catch((error) => {
43
+ console.log(error);
44
+ });
45
+ }
46
+ }, [activeCall, currentVideoDevice, isVideoMuted]);
47
+ };
48
+ exports.usePublishMediaStreams = usePublishMediaStreams;
49
+ //# sourceMappingURL=usePublishMediaStreams.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePublishMediaStreams.js","sourceRoot":"","sources":["../../../src/hooks/usePublishMediaStreams.ts"],"names":[],"mappings":";;;AAAA,0EAA0D;AAC1D,uEAA0E;AAC1E,0DAIiC;AACjC,iCAAkC;AAElC;;;;GAIG;AACI,MAAM,sBAAsB,GAAG,GAAG,EAAE;IACzC,MAAM,UAAU,GAAG,IAAA,8BAAO,GAAE,CAAC;IAC7B,MAAM,kBAAkB,GAAG,IAAA,6CAAwB,EACjD,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,kBAAkB,CACpC,CAAC;IACF,MAAM,kBAAkB,GAAG,IAAA,6CAAwB,EACjD,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,kBAAkB,CACpC,CAAC;IACF,MAAM,YAAY,GAAG,IAAA,6CAAwB,EAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAC7E,MAAM,YAAY,GAAG,IAAA,6CAAwB,EAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAE7E,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IACE,CAAC,UAAU,EAAE,kBAAkB,CAAC,aAAa,CAAC,4BAAa,CAAC,UAAU,CAAC,EACvE;YACA,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;YAC9C,OAAO;SACR;QACD,IAAI,kBAAkB,IAAI,CAAC,YAAY,EAAE;YACvC,IAAA,6BAAc,EAAC,kBAAkB,CAAC,QAAQ,CAAC;iBACxC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,UAAU,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;iBACxD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;gBACf,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;YACrB,CAAC,CAAC,CAAC;SACN;IACH,CAAC,EAAE,CAAC,UAAU,EAAE,kBAAkB,EAAE,YAAY,CAAC,CAAC,CAAC;IAEnD,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IACE,CAAC,UAAU,EAAE,kBAAkB,CAAC,aAAa,CAAC,4BAAa,CAAC,UAAU,CAAC,EACvE;YACA,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;YAC9C,OAAO;SACR;QACD,IAAI,kBAAkB,IAAI,CAAC,YAAY,EAAE;YACvC,IAAA,6BAAc,EAAC,kBAAkB,CAAC,QAAQ,CAAC;iBACxC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE;gBACf,UAAU,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;YACzC,CAAC,CAAC;iBACD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;gBACf,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;YACrB,CAAC,CAAC,CAAC;SACN;IACH,CAAC,EAAE,CAAC,UAAU,EAAE,kBAAkB,EAAE,YAAY,CAAC,CAAC,CAAC;AACrD,CAAC,CAAC;AA5CW,QAAA,sBAAsB,0BA4CjC"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const ArrowRight: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ArrowRight = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const ArrowRight = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 8 15">
6
+ <react_native_svg_1.Path clipRule="evenodd" fillRule="evenodd" d="M 0.553016 2.50028 L 5.3299 7.5 L 0.553016 12.4997 C 0.111957 12.9585 0.111957 13.6972 0.553016 14.1559 C 0.994074 14.6147 1.71173 14.6147 2.14531 14.1559 L 7.66975 8.37864 C 7.9015 8.1376 8.01363 7.8188 7.99868 7.5 C 8.01363 7.1812 7.9015 6.8624 7.66975 6.62136 L 2.14531 0.84407 C 1.70425 0.385308 0.986598 0.385308 0.553016 0.84407 C 0.111957 1.30283 0.111957 2.04152 0.553016 2.50028 Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.ArrowRight = ArrowRight;
9
+ //# sourceMappingURL=ArrowRight.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowRight.js","sourceRoot":"","sources":["../../../src/icons/ArrowRight.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,UAAU,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC9C,CAAC,sBAAG,CAAC,OAAO,CAAC,UAAU,CACrB;IAAA,CAAC,uBAAI,CACH,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,uYAAuY,CACzY,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AATW,QAAA,UAAU,cASrB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const CameraSwitch: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CameraSwitch = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const CameraSwitch = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 28 23">
6
+ <react_native_svg_1.Path d="M3.86621 22.0075H24.1117C26.5225 22.0075 27.7948 20.7575 27.7948 18.3691V6.65036C27.7948 4.26196 26.5225 3.01196 24.1117 3.01196H21.143C20.2725 3.01196 19.9934 2.86687 19.4466 2.29768L18.5649 1.34902C17.9845 0.735177 17.393 0.433838 16.2546 0.433838H11.6675C10.5292 0.433838 9.93764 0.735177 9.35728 1.34902L8.47558 2.29768C7.93987 2.85571 7.64969 3.01196 6.77916 3.01196H3.86621C1.4555 3.01196 0.194336 4.26196 0.194336 6.65036V18.3691C0.194336 20.7575 1.4555 22.0075 3.86621 22.0075ZM10.0492 8.34678C9.66978 7.90036 9.80371 7.29768 10.3729 6.86241C11.3104 6.11464 12.6274 5.65705 13.989 5.65705C17.1363 5.65705 19.614 7.75527 20.1609 10.7798H21.21C21.768 10.7798 21.9131 11.3155 21.5894 11.762L19.7925 14.2508C19.4689 14.7084 18.9109 14.6861 18.5872 14.2508L16.7792 11.762C16.4443 11.3267 16.6006 10.7798 17.1586 10.7798H18.2747C17.7725 8.9383 16.0649 7.57669 13.989 7.57669C13.0068 7.57669 12.2479 7.87803 11.489 8.46955C10.9756 8.82669 10.4399 8.80437 10.0492 8.34678ZM6.36621 11.9517L8.15192 9.47402C8.48675 9.01643 9.03362 9.03875 9.35728 9.47402L11.1765 11.9517C11.5001 12.387 11.3439 12.9338 10.7859 12.9338H9.72558C10.2278 14.7754 11.9354 16.137 14.0113 16.137C14.9934 16.137 15.7524 15.8356 16.5113 15.2553C17.0247 14.887 17.5716 14.9204 17.951 15.3669C18.3305 15.8133 18.2077 16.4383 17.6274 16.8624C16.6899 17.6102 15.3841 18.0566 14.0113 18.0566C10.8751 18.0566 8.3863 15.9584 7.83942 12.9338H6.74567C6.18764 12.9338 6.04255 12.3981 6.36621 11.9517Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.CameraSwitch = CameraSwitch;
9
+ //# sourceMappingURL=CameraSwitch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CameraSwitch.js","sourceRoot":"","sources":["../../../src/icons/CameraSwitch.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,YAAY,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAChD,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,w7CAAw7C,CAC17C,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,YAAY,gBAOvB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Chat: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Chat = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Chat = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 21 20">
6
+ <react_native_svg_1.Path d="M 17.1887 0.353516 H 2.37385 C 1.35534 0.353516 0.522003 1.18685 0.522003 2.20537 V 18.872 L 4.22571 15.1683 H 17.1887 C 18.2072 15.1683 19.0405 14.335 19.0405 13.3165 V 2.20537 C 19.0405 1.18685 18.2072 0.353516 17.1887 0.353516 Z M 17.1887 13.3165 H 4.22571 L 2.37385 15.1683 V 2.20537 H 17.1887 V 13.3165 Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Chat = Chat;
9
+ //# sourceMappingURL=Chat.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Chat.js","sourceRoot":"","sources":["../../../src/icons/Chat.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,IAAI,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACxC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,uTAAuT,CACzT,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,IAAI,QAOf"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Cross: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Cross = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Cross = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 12 13">
6
+ <react_native_svg_1.Path d="M 0.322153 11.8408 C 0.700083 12.2188 1.34168 12.21 1.71083 11.8408 L 5.99989 7.56055 L 10.2802 11.8408 C 10.6493 12.21 11.2909 12.2188 11.6688 11.8408 C 12.0468 11.4629 12.038 10.8213 11.6688 10.4521 L 7.38856 6.16309 L 11.6688 1.88281 C 12.038 1.51367 12.0468 0.87207 11.6688 0.494141 C 11.2909 0.116211 10.6493 0.125 10.2802 0.494141 L 5.99989 4.77441 L 1.71083 0.485352 C 1.34168 0.125 0.700083 0.116211 0.322153 0.494141 C -0.0557764 0.87207 -0.0469874 1.51367 0.322153 1.88281 L 4.60243 6.16309 L 0.322153 10.4521 C -0.0469874 10.8213 -0.0557764 11.4629 0.322153 11.8408 Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Cross = Cross;
9
+ //# sourceMappingURL=Cross.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cross.js","sourceRoot":"","sources":["../../../src/icons/Cross.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,KAAK,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACzC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,okBAAokB,CACtkB,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,KAAK,SAOhB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Mic: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Mic = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Mic = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 22 28">
6
+ <react_native_svg_1.Path d="M11 17.6c2.459 0 4.444-1.923 4.444-4.305V4.683C15.444 2.301 13.46.378 11 .378 8.54.378 6.555 2.3 6.555 4.683v8.612c0 2.382 1.986 4.305 4.445 4.305Z" fill={color}/>
7
+ <react_native_svg_1.Path d="M18.407 13.295c0 3.96-3.318 7.176-7.407 7.176-4.09 0-7.408-3.215-7.408-7.176H.63c0 5.066 3.867 9.228 8.89 9.931v4.42h2.962v-4.42c5.022-.703 8.89-4.865 8.89-9.931h-2.964Z" fill={color}/>
8
+ </react_native_svg_1.Svg>);
9
+ exports.Mic = Mic;
10
+ //# sourceMappingURL=Mic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Mic.js","sourceRoot":"","sources":["../../../src/icons/Mic.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,GAAG,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACvC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,qJAAqJ,CACvJ,IAAI,CAAC,CAAC,KAAK,CAAC,EAEd;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,2KAA2K,CAC7K,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAXW,QAAA,GAAG,OAWd"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const MicOff: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MicOff = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const MicOff = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 21 25">
6
+ <react_native_svg_1.Path d="M9.99986 0.241211C7.89048 0.241211 6.37263 1.70794 6.16057 3.87469V4.23026L13.9061 11.9417C13.9284 11.8639 13.9284 11.775 13.9284 11.6861V4.39693C13.9284 1.93017 12.2655 0.241211 9.99986 0.241211ZM18.6159 21.0976C18.9731 21.442 19.5423 21.442 19.8771 21.0976C20.2119 20.742 20.2231 20.1864 19.8771 19.842L1.98647 2.05239C1.64049 1.70794 1.07129 1.69682 0.725307 2.05239C0.379325 2.38574 0.379325 2.96354 0.725307 3.29689L18.6159 21.0976ZM1.46191 12.0861C1.46191 16.6863 4.54227 19.8309 8.96191 20.2531V22.5088H4.86593C4.27441 22.5088 3.78334 22.9754 3.78334 23.5644C3.78334 24.1422 4.27441 24.6199 4.86593 24.6199H15.1338C15.7253 24.6199 16.2164 24.1422 16.2164 23.5644C16.2164 22.9754 15.7253 22.5088 15.1338 22.5088H11.0378V20.2531C12.3883 20.1198 13.6048 19.742 14.6427 19.1308L13.1137 17.5975C12.2208 18.0419 11.1717 18.2864 9.99986 18.2864C6.19406 18.2864 3.61593 15.7974 3.61593 12.0083V9.89715C3.61593 9.30823 3.12486 8.85266 2.53334 8.85266C1.94182 8.85266 1.46191 9.30823 1.46191 9.89715V12.0861ZM16.049 14.0751L17.7566 15.764C18.2588 14.6973 18.5266 13.4528 18.5266 12.0861V9.89715C18.5266 9.30823 18.0467 8.85266 17.4552 8.85266C16.8637 8.85266 16.3838 9.30823 16.3838 9.89715V12.0083C16.3838 12.7639 16.2722 13.4528 16.049 14.0751ZM9.99986 15.9863C10.4463 15.9863 10.8816 15.9085 11.2722 15.764L6.04897 10.575V11.8306C6.04897 14.2973 7.73423 15.9863 9.99986 15.9863Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.MicOff = MicOff;
9
+ //# sourceMappingURL=MicOff.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MicOff.js","sourceRoot":"","sources":["../../../src/icons/MicOff.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,MAAM,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC1C,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,o2CAAo2C,CACt2C,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,MAAM,UAOjB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Participants: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Participants = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Participants = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 23 20">
6
+ <react_native_svg_1.Path clipRule="evenodd" d="M 11 8 C 13.2091 8 15 6.20914 15 4 C 15 1.79086 13.2091 0 11 0 C 8.79086 0 7 1.79086 7 4 C 7 6.20914 8.79086 8 11 8 Z M 5.5 1 C 3.567 1 2 2.567 2 4.5 C 2 6.433 3.567 8 5.5 8 C 6.05228 8 6.5 7.55228 6.5 7 C 6.5 6.44772 6.05228 6 5.5 6 C 4.67157 6 4 5.32843 4 4.5 C 4 3.67157 4.67157 3 5.5 3 C 6.05228 3 6.5 2.55228 6.5 2 C 6.5 1.44772 6.05228 1 5.5 1 Z M 4 16 C 4 12.134 7.13401 9 11 9 C 14.866 9 18 12.134 18 16 C 18 16.397 17.9669 16.7869 17.903 17.1671 C 17.6021 18.9581 13 19.5 11 19.5 C 9 19.5 4.41865 19.0753 4.09763 17.1708 C 4.03335 16.7894 4 16.3982 4 16 Z M 3.85402 10.7725 C 4.28304 10.4247 4.34889 9.79494 4.0011 9.36592 C 3.6533 8.9369 3.02357 8.87105 2.59455 9.21884 C 1.01345 10.5006 0 12.4618 0 14.659 C 0 15.0572 0.0333547 15.4484 0.0976325 15.8297 C 0.18943 16.3743 0.705335 16.7414 1.24994 16.6496 C 1.79454 16.5578 2.16161 16.0419 2.06981 15.4973 C 2.02397 15.2253 2 14.9453 2 14.659 C 2 13.0903 2.72123 11.6908 3.85402 10.7725 Z M 20.5 4.5 C 20.5 2.567 18.933 1 17 1 C 16.4477 1 16 1.44772 16 2 C 16 2.55228 16.4477 3 17 3 C 17.8284 3 18.5 3.67157 18.5 4.5 C 18.5 5.32843 17.8284 6 17 6 C 16.4477 6 16 6.44772 16 7 C 16 7.55228 16.4477 8 17 8 C 18.933 8 20.5 6.433 20.5 4.5 Z M 18.3703 10.7725 C 17.9413 10.4247 17.8755 9.79494 18.2233 9.36592 C 18.5711 8.9369 19.2008 8.87105 19.6298 9.21884 C 21.2109 10.5006 22.2244 12.4618 22.2244 14.659 C 22.2244 15.0572 22.191 15.4484 22.1267 15.8297 C 22.0349 16.3743 21.519 16.7414 20.9744 16.6496 C 20.4298 16.5578 20.0628 16.0419 20.1546 15.4973 C 20.2004 15.2253 20.2244 14.9453 20.2244 14.659 C 20.2244 13.0903 19.5031 11.6908 18.3703 10.7725 Z" fill={color} fillRule="evenodd"/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Participants = Participants;
9
+ //# sourceMappingURL=Participants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Participants.js","sourceRoot":"","sources":["../../../src/icons/Participants.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,YAAY,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAChD,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,4kDAA4kD,CAC9kD,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,QAAQ,CAAC,SAAS,EAEtB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AATW,QAAA,YAAY,gBASvB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Phone: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Phone = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Phone = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 34 33">
6
+ <react_native_svg_1.Path d="M9.779 24.114c5 5.017 11.085 8.881 16.052 8.881 2.22 0 4.17-.78 5.73-2.508.914-1.017 1.474-2.187 1.474-3.356 0-.899-.356-1.78-1.22-2.39l-5.204-3.695c-.83-.577-1.509-.848-2.12-.848-.796 0-1.508.44-2.287 1.22l-1.22 1.22a.982.982 0 0 1-.662.272c-.271 0-.525-.102-.695-.203-1.068-.577-2.898-2.136-4.593-3.831-1.695-1.695-3.272-3.509-3.831-4.594a1.454 1.454 0 0 1-.187-.695.95.95 0 0 1 .255-.644l1.22-1.237c.763-.797 1.22-1.492 1.22-2.288 0-.628-.27-1.306-.847-2.12L9.186 2.147C8.559 1.265 7.677.892 6.71.892c-1.153 0-2.305.508-3.305 1.474C1.71 3.96.965 5.943.965 8.13c0 4.967 3.814 10.984 8.814 15.985Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Phone = Phone;
9
+ //# sourceMappingURL=Phone.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Phone.js","sourceRoot":"","sources":["../../../src/icons/Phone.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,KAAK,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACzC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,wlBAAwlB,CAC1lB,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,KAAK,SAOhB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const PhoneDown: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PhoneDown = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const A11yLabels_1 = require("../constants/A11yLabels");
6
+ const PhoneDown = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 42 17" accessibilityLabel={A11yLabels_1.A11yIcons.HANG_UP_CALL}>
7
+ <react_native_svg_1.Path d="M20.983.96C13.406.977 6.372 2.536 2.863 6.045 1.287 7.621.473 9.537.575 11.876c.068 1.373.508 2.576 1.322 3.407.644.627 1.526 1 2.56.83l6.305-1.067c.983-.153 1.661-.458 2.102-.899.56-.559.729-1.373.729-2.474l.017-1.746c0-.272.118-.475.27-.644.187-.204.442-.306.645-.34 1.17-.27 3.56-.542 6.475-.542 2.899 0 5.289.204 6.458.543.187.05.44.152.627.339.153.17.255.372.271.627l.017 1.763c.017 1.101.187 1.915.746 2.474.441.441 1.119.746 2.102.899l6.238 1.05c1.068.187 1.966-.203 2.644-.88.814-.78 1.271-1.984 1.305-3.374.068-2.322-.813-4.238-2.373-5.797C35.527 2.536 28.577.96 20.983.96Z" fill={color}/>
8
+ </react_native_svg_1.Svg>);
9
+ exports.PhoneDown = PhoneDown;
10
+ //# sourceMappingURL=PhoneDown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PhoneDown.js","sourceRoot":"","sources":["../../../src/icons/PhoneDown.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAC7C,wDAAoD;AAM7C,MAAM,SAAS,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC7C,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,sBAAS,CAAC,YAAY,CAAC,CAClE;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,wkBAAwkB,CAC1kB,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,SAAS,aAOpB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Pin: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Pin = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Pin = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 24 24">
6
+ <react_native_svg_1.Path fill={color} fillRule="evenodd" clipRule="evenodd" d="M 16.041 0.293372 C 15.7956 0.0479219 15.4405 -0.0529382 15.1027 0.0268118 C 14.7649 0.106562 14.4924 0.355552 14.3826 0.684852 L 13.7492 2.58516 L 8.0804 8.25401 C 5.69213 7.71299 2.39999 9.68517 0.293348 11.7918 C -0.0977825 12.1829 -0.0977825 12.8171 0.293348 13.2082 L 4.8344 17.7493 L 1.70985 20.8738 C 1.31872 21.265 1.31872 21.8991 1.70985 22.2902 C 2.10098 22.6814 2.73513 22.6814 3.12626 22.2902 L 6.2508 19.1657 L 10.7918 23.7067 C 11.1829 24.0978 11.8171 24.0978 12.2082 23.7067 C 14.3148 21.6 16.287 18.3079 15.746 15.9196 L 21.4148 10.2508 L 23.3151 9.61735 C 23.6444 9.50758 23.8934 9.23514 23.9732 8.89731 C 24.0529 8.55948 23.9521 8.20444 23.7066 7.95899 L 16.041 0.293372 Z M 15.5748 3.4429 L 15.7705 2.85567 L 21.1443 8.2295 L 20.5571 8.42525 C 20.4096 8.47441 20.2756 8.55725 20.1656 8.6672 L 13.9164 14.9164 C 13.6481 15.1847 13.5545 15.5814 13.6744 15.9413 C 14.1518 17.3733 12.8573 19.8847 11.4693 21.5514 L 2.44861 12.5307 C 4.11529 11.1427 6.62666 9.84822 8.0587 10.3256 C 8.4186 10.4455 8.8153 10.3519 9.0836 10.0836 L 15.3328 3.83438 C 15.4427 3.72444 15.5256 3.59041 15.5748 3.4429 Z"/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Pin = Pin;
9
+ //# sourceMappingURL=Pin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pin.js","sourceRoot":"","sources":["../../../src/icons/Pin.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,GAAG,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACvC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,wlCAAwlC,EAE9lC;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AATW,QAAA,GAAG,OASd"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Reaction: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Reaction = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Reaction = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 22 20">
6
+ <react_native_svg_1.Path fill={color} d="M 5.50033 8.16667 C 5.50033 7.40583 6.11449 6.79167 6.87533 6.79167 C 7.63616 6.79167 8.25033 7.40583 8.25033 8.16667 C 8.25033 8.9275 7.63616 9.54167 6.87533 9.54167 C 6.11449 9.54167 5.50033 8.9275 5.50033 8.16667 Z M 10.0837 15.5 C 12.2195 15.5 14.0345 14.1617 14.7678 12.2917 H 5.39949 C 6.13283 14.1617 7.94783 15.5 10.0837 15.5 Z M 13.292 9.54167 C 14.0528 9.54167 14.667 8.9275 14.667 8.16667 C 14.667 7.40583 14.0528 6.79167 13.292 6.79167 C 12.5312 6.79167 11.917 7.40583 11.917 8.16667 C 11.917 8.9275 12.5312 9.54167 13.292 9.54167 Z M 19.2503 0.375 H 17.417 V 2.20833 H 15.5837 V 4.04167 H 17.417 V 5.875 H 19.2503 V 4.04167 H 21.0837 V 2.20833 H 19.2503 V 0.375 Z M 17.417 10.4583 C 17.417 14.51 14.1353 17.7917 10.0837 17.7917 C 6.03199 17.7917 2.75033 14.51 2.75033 10.4583 C 2.75033 6.40667 6.03199 3.125 10.0837 3.125 C 11.422 3.125 12.6687 3.49167 13.7503 4.115 V 2.06167 C 12.6228 1.56667 11.3853 1.29167 10.0745 1.29167 C 5.01449 1.29167 0.916992 5.39833 0.916992 10.4583 C 0.916992 15.5183 5.01449 19.625 10.0745 19.625 C 15.1437 19.625 19.2503 15.5183 19.2503 10.4583 C 19.2503 9.49583 19.0945 8.57917 18.8195 7.70833 H 16.867 C 17.2153 8.56083 17.417 9.48667 17.417 10.4583 Z"/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Reaction = Reaction;
9
+ //# sourceMappingURL=Reaction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Reaction.js","sourceRoot":"","sources":["../../../src/icons/Reaction.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,QAAQ,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC5C,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,CAAC,CAAC,grCAAgrC,EAEtrC;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,QAAQ,YAOnB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const ScreenShare: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.ScreenShare = void 0;
27
+ const react_native_svg_1 = __importStar(require("react-native-svg"));
28
+ const A11yLabels_1 = require("../constants/A11yLabels");
29
+ const ScreenShare = ({ color }) => {
30
+ return (<react_native_svg_1.default viewBox="0 0 24 24" accessibilityLabel={A11yLabels_1.A11yIcons.SCREEN_SHARE}>
31
+ <react_native_svg_1.Mask id="path-1-inside-1_1396_84816">
32
+ <react_native_svg_1.Path fillRule="evenodd" clipRule="evenodd" d="M 2 6.68176 C 2 5.57719 2.89543 4.68176 4 4.68176 H 20 C 21.1046 4.68176 22 5.57719 22 6.68176 V 16.3181 C 22 17.4227 21.1046 18.3181 20 18.3181 H 4 C 2.89543 18.3181 2 17.4227 2 16.3181 V 6.68176 Z M 10.4209 11.5243 L 8.3635 11.5 L 11.9999 7.25755 L 15.6362 11.5 L 13.5065 11.5247 V 15.7424 L 10.4209 15.7424 V 11.5243 Z"/>
33
+ </react_native_svg_1.Mask>
34
+
35
+ <react_native_svg_1.Path fill={color} fillRule="evenodd" clipRule="evenodd" d="M 2 6.68176 C 2 5.57719 2.89543 4.68176 4 4.68176 H 20 C 21.1046 4.68176 22 5.57719 22 6.68176 V 16.3181 C 22 17.4227 21.1046 18.3181 20 18.3181 H 4 C 2.89543 18.3181 2 17.4227 2 16.3181 V 6.68176 Z M 10.4209 11.5243 L 8.3635 11.5 L 11.9999 7.25755 L 15.6362 11.5 L 13.5065 11.5247 V 15.7424 L 10.4209 15.7424 V 11.5243 Z"/>
36
+ <react_native_svg_1.Path mask="url(#path-1-inside-1_1396_84816)" fill={color} d="M 8.3635 11.5 L 6.84499 10.1984 L 4.05865 13.4491 L 8.33982 13.4998 L 8.3635 11.5 Z M 10.4209 11.5243 H 12.4209 V 9.54789 L 10.4446 9.52449 L 10.4209 11.5243 Z M 11.9999 7.25755 L 13.5184 5.95597 L 11.9999 4.18437 L 10.4814 5.95597 L 11.9999 7.25755 Z M 15.6362 11.5 L 15.6594 13.4998 L 19.9419 13.4501 L 17.1547 10.1984 L 15.6362 11.5 Z M 13.5065 11.5247 L 13.4833 9.52483 L 11.5065 9.54778 V 11.5247 H 13.5065 Z M 13.5065 15.7424 L 13.5065 17.7424 L 15.5065 17.7424 V 15.7424 H 13.5065 Z M 10.4209 15.7424 H 8.42094 V 17.7424 H 10.4209 L 10.4209 15.7424 Z M 4 2.68176 C 1.79086 2.68176 0 4.47263 0 6.68176 H 4 V 6.68176 V 2.68176 Z M 20 2.68176 H 4 V 6.68176 H 20 V 2.68176 Z M 24 6.68176 C 24 4.47262 22.2091 2.68176 20 2.68176 V 6.68176 H 24 Z M 24 16.3181 V 6.68176 H 20 V 16.3181 H 24 Z M 20 20.3181 C 22.2091 20.3181 24 18.5273 24 16.3181 H 20 V 16.3181 V 20.3181 Z M 4 20.3181 H 20 V 16.3181 H 4 V 20.3181 Z M 0 16.3181 C 0 18.5273 1.79086 20.3181 4 20.3181 V 16.3181 H 4 H 0 Z M 0 6.68176 V 16.3181 H 4 V 6.68176 H 0 Z M 8.33982 13.4998 L 10.3973 13.5242 L 10.4446 9.52449 L 8.38719 9.50012 L 8.33982 13.4998 Z M 10.4814 5.95597 L 6.84499 10.1984 L 9.88202 12.8016 L 13.5184 8.55913 L 10.4814 5.95597 Z M 17.1547 10.1984 L 13.5184 5.95597 L 10.4814 8.55913 L 14.1177 12.8016 L 17.1547 10.1984 Z M 13.5297 13.5246 L 15.6594 13.4998 L 15.613 9.50011 L 13.4833 9.52483 L 13.5297 13.5246 Z M 11.5065 11.5247 V 15.7424 H 15.5065 V 11.5247 H 11.5065 Z M 13.5065 13.7424 L 10.4209 13.7424 L 10.4209 17.7424 L 13.5065 17.7424 L 13.5065 13.7424 Z M 12.4209 15.7424 V 11.5243 H 8.42094 V 15.7424 H 12.4209 Z"/>
37
+ </react_native_svg_1.default>);
38
+ };
39
+ exports.ScreenShare = ScreenShare;
40
+ //# sourceMappingURL=ScreenShare.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenShare.js","sourceRoot":"","sources":["../../../src/icons/ScreenShare.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qEAAmD;AACnD,wDAAoD;AAM7C,MAAM,WAAW,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE;IAC9C,OAAO,CACL,CAAC,0BAAG,CAAC,OAAO,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,sBAAS,CAAC,YAAY,CAAC,CAClE;MAAA,CAAC,uBAAI,CAAC,EAAE,CAAC,4BAA4B,CACnC;QAAA,CAAC,uBAAI,CACH,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,mUAAmU,EAEzU;MAAA,EAAE,uBAAI,CAEN;;MAAA,CAAC,uBAAI,CACH,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,mUAAmU,EAEvU;MAAA,CAAC,uBAAI,CACH,IAAI,CAAC,kCAAkC,CACvC,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,CAAC,CAAC,wkDAAwkD,EAE9kD;IAAA,EAAE,0BAAG,CAAC,CACP,CAAC;AACJ,CAAC,CAAC;AAxBW,QAAA,WAAW,eAwBtB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Settings: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.Settings = void 0;
27
+ const react_native_svg_1 = __importStar(require("react-native-svg"));
28
+ const Settings = ({ color }) => {
29
+ return (<react_native_svg_1.default viewBox="0 0 24 24" fill={color}>
30
+ <react_native_svg_1.Path d="M3.34 17a10.017 10.017 0 01-.978-2.326 3 3 0 00.002-5.347A9.99 9.99 0 014.865 4.99a3 3 0 004.631-2.674 9.99 9.99 0 015.007.002 3 3 0 004.632 2.672A9.99 9.99 0 0120.66 7c.433.749.757 1.53.978 2.326a3 3 0 00-.002 5.347 9.991 9.991 0 01-2.5 4.337 3 3 0 00-4.632 2.674 9.99 9.99 0 01-5.007-.002 3 3 0 00-4.632-2.672A10.02 10.02 0 013.34 17zm5.66.196a4.993 4.993 0 012.25 2.77c.5.047 1 .048 1.5 0a4.993 4.993 0 012.25-2.77 4.993 4.993 0 013.525-.564c.29-.408.54-.843.748-1.298A4.993 4.993 0 0118 12c0-1.26.47-2.437 1.273-3.334-.21-.455-.46-.89-.75-1.298A4.993 4.993 0 0115 6.804a4.992 4.992 0 01-2.25-2.77c-.499-.047-1-.048-1.499-.001a4.993 4.993 0 01-2.25 2.77 4.993 4.993 0 01-3.526.565 7.99 7.99 0 00-.748 1.298A4.993 4.993 0 016 12a4.99 4.99 0 01-1.273 3.334c.21.455.46.89.75 1.298A4.993 4.993 0 019 17.196zM12 15a3 3 0 110-6 3 3 0 010 6zm0-2a1 1 0 100-2 1 1 0 000 2z"/>
31
+ </react_native_svg_1.default>);
32
+ };
33
+ exports.Settings = Settings;
34
+ //# sourceMappingURL=Settings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Settings.js","sourceRoot":"","sources":["../../../src/icons/Settings.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qEAA6C;AAMtC,MAAM,QAAQ,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE;IAC3C,OAAO,CACL,CAAC,0BAAG,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CACnC;MAAA,CAAC,uBAAI,CAAC,CAAC,CAAC,o2BAAo2B,EAC92B;IAAA,EAAE,0BAAG,CAAC,CACP,CAAC;AACJ,CAAC,CAAC;AANW,QAAA,QAAQ,YAMnB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const SpotLight: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SpotLight = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const SpotLight = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 24 24">
6
+ <react_native_svg_1.Path fill={color} fillRule="evenodd" clipRule="evenodd" d="M 12 22 C 17.5228 22 22 17.5228 22 12 C 22 6.47715 17.5228 2 12 2 C 6.47715 2 2 6.47715 2 12 C 2 17.5228 6.47715 22 12 22 Z M 12 24 C 18.6274 24 24 18.6274 24 12 C 24 5.37258 18.6274 0 12 0 C 5.37258 0 0 5.37258 0 12 C 0 18.6274 5.37258 24 12 24 Z"/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.SpotLight = SpotLight;
9
+ //# sourceMappingURL=Spotlight.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Spotlight.js","sourceRoot":"","sources":["../../../src/icons/Spotlight.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,SAAS,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC7C,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,CAClB,CAAC,CAAC,yPAAyP,EAE/P;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AATW,QAAA,SAAS,aASpB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const ThreeDots: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ThreeDots = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const ThreeDots = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 24 24">
6
+ <react_native_svg_1.Circle cx="3.5" cy="12" r="2.5" fill={color}/>
7
+ <react_native_svg_1.Circle cx="12" cy="12" r="2.5" fill={color}/>
8
+ <react_native_svg_1.Circle cx="20.5" cy="12" r="2.5" fill={color}/>
9
+ </react_native_svg_1.Svg>);
10
+ exports.ThreeDots = ThreeDots;
11
+ //# sourceMappingURL=ThreeDots.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThreeDots.js","sourceRoot":"","sources":["../../../src/icons/ThreeDots.tsx"],"names":[],"mappings":";;;AAAA,uDAA+C;AAMxC,MAAM,SAAS,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CAC7C,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,yBAAM,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,EAC7C;IAAA,CAAC,yBAAM,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,EAC5C;IAAA,CAAC,yBAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,EAChD;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AANW,QAAA,SAAS,aAMpB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const Video: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Video = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const Video = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 29 19">
6
+ <react_native_svg_1.Path d="M4.725 18.635h11.741c2.411 0 3.795-1.35 3.795-3.717V3.958c0-2.366-1.295-3.716-3.705-3.716H4.726C2.403.242.93 1.592.93 3.958v11.038c0 2.355 1.395 3.639 3.794 3.639Zm17.177-5.603 3.817 3.281c.457.402.948.659 1.417.659.904 0 1.518-.648 1.518-1.63V3.59c0-.982-.614-1.63-1.518-1.63-.48 0-.96.257-1.417.659L21.902 5.9v7.132Z" fill={color}/>
7
+ </react_native_svg_1.Svg>);
8
+ exports.Video = Video;
9
+ //# sourceMappingURL=Video.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Video.js","sourceRoot":"","sources":["../../../src/icons/Video.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,KAAK,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACzC,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,gUAAgU,CAClU,IAAI,CAAC,CAAC,KAAK,CAAC,EAEhB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAPW,QAAA,KAAK,SAOhB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const VideoDisabled: ({ color }: Props) => JSX.Element;
5
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VideoDisabled = void 0;
4
+ const react_native_svg_1 = require("react-native-svg");
5
+ const VideoDisabled = ({ color }) => (<react_native_svg_1.Svg viewBox="0 0 24 24">
6
+ <react_native_svg_1.Path d="M 22.1126 16.2238 L 19.1546 13.6686 V 8.37994 L 22.1126 5.82471 L 22.1127 5.82476 L 22.1205 5.81781 C 22.4413 5.53481 22.6269 5.49515 22.686 5.49515 C 22.8267 5.49515 22.8809 5.53948 22.9048 5.56519 C 22.9344 5.59687 23 5.69295 23 5.91262 V 16.1359 C 23 16.3556 22.9344 16.4517 22.9048 16.4833 C 22.8809 16.5091 22.8267 16.5534 22.686 16.5534 C 22.634 16.5534 22.4383 16.5111 22.1205 16.2307 L 22.1206 16.2307 L 22.1126 16.2238 Z M 13.4493 18 H 3.28502 C 2.41817 18 1.87542 17.7686 1.55341 17.4618 C 1.23884 17.162 1 16.6616 1 15.835 V 6.23301 C 1 5.4144 1.24841 4.88792 1.58386 4.5637 C 1.92432 4.23463 2.47262 4 3.28502 4 H 13.5266 C 14.3853 4 14.898 4.23821 15.1995 4.54532 C 15.5041 4.85542 15.7343 5.37926 15.7343 6.23301 V 15.767 C 15.7343 16.6029 15.4949 17.126 15.1733 17.4423 C 14.8492 17.7609 14.3088 18 13.4493 18 Z" fill={'none'} stroke={color} strokeWidth={2}/>
7
+ <react_native_svg_1.Path d="M 5.79311 7.27924 C 5.38794 6.90692 4.73102 6.90692 4.32585 7.27924 C 3.92068 7.65156 3.92068 8.25521 4.32585 8.62753 L 6.90766 11 L 4.32586 13.3725 C 3.92069 13.7448 3.92069 14.3484 4.32586 14.7208 C 4.73103 15.0931 5.38795 15.0931 5.79312 14.7208 L 8.37492 12.3483 L 10.9567 14.7208 C 11.3619 15.0931 12.0188 15.0931 12.424 14.7208 C 12.8291 14.3484 12.8291 13.7448 12.424 13.3725 L 9.84217 11 L 12.424 8.62754 C 12.8291 8.25521 12.8291 7.65156 12.424 7.27924 C 12.0188 6.90692 11.3619 6.90692 10.9567 7.27924 L 8.37492 9.65171 L 5.79311 7.27924 Z" fill={color} fillRule="evenodd" clipRule="evenodd"/>
8
+ </react_native_svg_1.Svg>);
9
+ exports.VideoDisabled = VideoDisabled;
10
+ //# sourceMappingURL=VideoDisabled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoDisabled.js","sourceRoot":"","sources":["../../../src/icons/VideoDisabled.tsx"],"names":[],"mappings":";;;AAAA,uDAA6C;AAMtC,MAAM,aAAa,GAAG,CAAC,EAAE,KAAK,EAAS,EAAE,EAAE,CAAC,CACjD,CAAC,sBAAG,CAAC,OAAO,CAAC,WAAW,CACtB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,4zBAA4zB,CAC9zB,IAAI,CAAC,CAAC,MAAM,CAAC,CACb,MAAM,CAAC,CAAC,KAAK,CAAC,CACd,WAAW,CAAC,CAAC,CAAC,CAAC,EAEjB;IAAA,CAAC,uBAAI,CACH,CAAC,CAAC,uiBAAuiB,CACziB,IAAI,CAAC,CAAC,KAAK,CAAC,CACZ,QAAQ,CAAC,SAAS,CAClB,QAAQ,CAAC,SAAS,EAEtB;EAAA,EAAE,sBAAG,CAAC,CACP,CAAC;AAfW,QAAA,aAAa,iBAexB"}
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ color: string;
3
+ };
4
+ export declare const VideoOff: ({ color }: Props) => JSX.Element;
5
+ export {};