BottomTray
A floating support-style chat widget.
BottomTray gives you a collapsible chat widget anchored to the bottom corner.
import { BottomTray } from "@openuidev/react-ui";
export function App() {
return (
<>
<main>{/* Your app */}</main>
<BottomTray apiUrl="/api/chat" agentName="Support" />
</>
);
}Controlled open state
<BottomTray
apiUrl="/api/chat"
isOpen={isOpen}
onOpenChange={setIsOpen}
/>