(feat): add reply box to messages
(feat): update methanium ui (fix): user data caching (fix): other random stuff (qol): update todo
This commit is contained in:
parent
53728b7436
commit
6a5236bafe
32 changed files with 722 additions and 394 deletions
|
|
@ -1,7 +1,11 @@
|
|||
import { LeaveIcon } from "@livekit/components-react";
|
||||
import { Button, withTooltip } from "@methanium/ui";
|
||||
import { Button } from "@methanium/ui";
|
||||
import { disconnect, useCall } from "../../store";
|
||||
import { type CallButtonProps, iconScale } from "./tooltipButton";
|
||||
import {
|
||||
type CallButtonProps,
|
||||
iconScale,
|
||||
withButtonTooltip,
|
||||
} from "./tooltipButton";
|
||||
|
||||
export default function LeaveButton({
|
||||
className,
|
||||
|
|
@ -22,5 +26,5 @@ export default function LeaveButton({
|
|||
</Button>
|
||||
);
|
||||
|
||||
return withTooltip(button, tooltip, portalContainer);
|
||||
return withButtonTooltip(button, tooltip, portalContainer);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue