import React from "react"; import classNames from "classnames"; import styles from "./PTTButton.module.css"; import { ReactComponent as MicIcon } from "../icons/Mic.svg"; import { Avatar } from "../Avatar"; interface Props { showTalkOverError: boolean; activeSpeakerUserId: string; activeSpeakerDisplayName: string; activeSpeakerAvatarUrl: string; activeSpeakerIsLocalUser: boolean; size: number; startTalking: () => void; stopTalking: () => void; } export const PTTButton: React.FC = ({ showTalkOverError, activeSpeakerUserId, activeSpeakerDisplayName, activeSpeakerAvatarUrl, activeSpeakerIsLocalUser, size, startTalking, stopTalking, }) => { return ( ); };