---
import type { DocsSidebarNav } from '../../lib/docs';
import Sidebar from '../theme/Sidebar.astro';

interface Props {
  sidebar: DocsSidebarNav;
  currentPath?: string;
  label?: string;
  maxHeight?: string;
}

const {
  sidebar,
  currentPath,
  label,
  maxHeight = 'calc(100vh - var(--lotus-docs-chrome-height))',
} = Astro.props;
---

<Sidebar currentPath={currentPath} label={label} maxHeight={maxHeight} sidebar={sidebar} />
