/* Copyright 2025 New Vector Ltd. SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE in the repository root for full details. */ import { type FC } from "react"; import { BigIcon, Button, Heading, Text } from "@vector-im/compound-web"; import { VoiceCallIcon } from "@vector-im/compound-design-tokens/assets/web/icons"; import { useTranslation } from "react-i18next"; import styles from "./EarpieceOverlay.module.css"; interface Props { show: boolean; onBackToVideoPressed?: (() => void) | null; } export const EarpieceOverlay: FC = ({ show, onBackToVideoPressed }) => { const { t } = useTranslation(); return (
{t("handset.overlay_title")} {t("handset.overlay_description")} {/* This spacer is used to give the overlay an offset to the top. */}
); };