### Friend Requests #### Parameters | Name | Values | | -------------------- | -------------------------------------------- | | text | string | | timestamp | number | | direction | 'outgoing' \| 'incoming | | status | 'sending' \| 'sent' \| 'read' \| 'delivered' | | friendStatus | 'pending' \| 'accepted' \| 'declined' | | i18n | Localizer | | onAccept | function | | onDecline | function | | onDeleteConversation | function | | onRetrySend | function | #### Example ```jsx
  • console.log('Accepted friend request')} onDecline={() => console.log('Declined friend request')} onDeleteConversation={() => console.log('Delete conversation')} onRetrySend={() => console.log('Retry sending message')} />
  • ```