import AccountCircleIcon from '@material-ui/icons/AccountCircle'; import { useCallback } from 'react'; import { useMemo } from 'react'; import { useContext } from 'react'; import { useInvitationState } from '../../state/Notifications/NotificationsHooks'; import { NotificationsContext } from '../../state/Notifications/NotificationsProvider'; import { lightgrey } from '../../lib/colors'; import { useMe } from '../hooks'; import UIButton from '../UI/UIButton'; import { CarpoolContext } from './Carpool'; function MemberRow({ member }: { member: { id: number; name: string } }) { return (