client/packages/call/src/components/buttons/leave.tsx
Alois 6a5236bafe
All checks were successful
/ build-web (push) Successful in 7m40s
/ build-desktop (linux) (push) Successful in 12m6s
/ build-mobile (push) Successful in 19m4s
/ release (push) Successful in 3m25s
(feat): add reply box to messages
(feat): update methanium ui
(fix): user data caching
(fix): other random stuff
(qol): update todo
2026-07-30 23:01:42 +02:00

30 lines
724 B
TypeScript

import { LeaveIcon } from "@livekit/components-react";
import { Button } from "@methanium/ui";
import { disconnect, useCall } from "../../store";
import {
type CallButtonProps,
iconScale,
withButtonTooltip,
} from "./tooltipButton";
export default function LeaveButton({
className,
iconSize,
tooltip,
portalContainer,
}: CallButtonProps) {
const state = useCall((store) => store.state);
const button = (
<Button
className={className}
onClick={() => disconnect()}
disabled={state === "closing" || state === "closed"}
variant="destructive"
>
<LeaveIcon style={iconScale(iconSize)} />
</Button>
);
return withButtonTooltip(button, tooltip, portalContainer);
}