Chat icon => users icon

This commit is contained in:
Ian Philips 2022-08-05 06:58:29 -06:00
parent 97e3de4e0f
commit 1c80bf1faf

View File

@ -24,7 +24,7 @@ import { sum } from 'lodash'
import { formatMoney } from 'common/util/format' import { formatMoney } from 'common/util/format'
import { useWindowSize } from 'web/hooks/use-window-size' import { useWindowSize } from 'web/hooks/use-window-size'
import { useUnseenPreferredNotifications } from 'web/hooks/use-notifications' import { useUnseenPreferredNotifications } from 'web/hooks/use-notifications'
import { ChatIcon, ChevronDownIcon } from '@heroicons/react/outline' import { ChatIcon, ChevronDownIcon, UsersIcon } from '@heroicons/react/outline'
import { setNotificationsAsSeen } from 'web/pages/notifications' import { setNotificationsAsSeen } from 'web/pages/notifications'
export function GroupChat(props: { export function GroupChat(props: {
@ -239,7 +239,7 @@ export function GroupChatInBubble(props: {
}} }}
> >
{!shouldShowChat ? ( {!shouldShowChat ? (
<ChatIcon className="h-10 w-10" aria-hidden="true" /> <UsersIcon className="h-10 w-10" aria-hidden="true" />
) : ( ) : (
<ChevronDownIcon className={'h-10 w-10'} aria-hidden={'true'} /> <ChevronDownIcon className={'h-10 w-10'} aria-hidden={'true'} />
)} )}