import React from 'react'; import RelativeTimestamp from 'soapbox/components/relative-timestamp'; import { Avatar, HStack, Icon, Stack, Text } from 'soapbox/components/ui'; import VerificationBadge from 'soapbox/components/verification_badge'; import type { IChat, IChatSilence } from 'soapbox/queries/chats'; interface IChatListItemInterface { chat: IChat, onClick: (chat: any) => void, chatSilence?: IChatSilence } const ChatListItem: React.FC = ({ chat, chatSilence, onClick }) => { return ( ); }; export default ChatListItem;