import { Button, withTooltip } from "@methanium/ui"; import { toggleDeaf, useCall } from "../../store"; import { HeadphoneOff, Headphones } from "lucide-react"; import { type CallButtonProps, iconScale } from "./tooltipButton"; export default function DeafButton({ className, iconSize, tooltip, portalContainer, }: CallButtonProps) { const deaf = useCall((state) => state.deaf); const button = ( ); return withTooltip(button, tooltip, portalContainer); }