AskAI.Sidepane
Sliding sidepane surface that anchors to the right on desktop and the bottom on mobile
Overview
Sidepane surface that slides in from the right on desktop and from the bottom on mobile, giving you a persistent chat surface without blocking the page. Pair it with AskAI.Trigger.
Demo
Usage
import { AskAI } from 'peam/client';
export default function Page() {
return (
<AskAI>
<AskAI.Trigger />
<AskAI.Sidepane />
</AskAI>
);
}Notes
- Must be rendered inside
AskAI.
Props
| Prop | Type | Default | Description |
|---|---|---|---|
children | ReactNode | undefined | Custom sidepane contents. |
| (all) | HTMLDivElement props | — | Accepts all standard div props. |