// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: BSD 2-Clause License import { twMerge } from "tailwind-merge"; import type usePipecatWebRTC from "./hooks/use-pipecat-webrtc"; type Props = ReturnType; export default function WebRTCButton(props: Props) { const className = "bg-nvidia px-4 py-2 rounded-lg text-white"; switch (props.status) { case "init": return ( ); case "connecting": return ( ); case "connected": return ( ); case "error": return ( ); } }