"use client"; import { useRef } from "react"; import { GearIcon } from "@radix-ui/react-icons"; import { SettingsIcon, Volume2 } from "lucide-react"; export const SettingsBtn = () => { const modalRef = useRef(null); return (

Einstellungen

{/* FÜGE HIER BITTE DEN MIKROFONAUSSCHLAG EIN WIE IN DER V1 */}

Ausgabelautstärke

0 25 50 75 100
); }; export const Settings = () => { return (
); };