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

PropTypeDefaultDescription
childrenReactNodeundefinedCustom sidepane contents.
(all)HTMLDivElement propsAccepts all standard div props.

On this page

GitHubEdit this page on GitHub