mirror of
https://github.com/discordjs/discord.js.git
synced 2026-05-30 15:40:08 +00:00
25 lines
829 B
TypeScript
25 lines
829 B
TypeScript
import { Scrollbars } from 'react-custom-scrollbars-2';
|
|
import type { MDXPage } from './SidebarItems.jsx';
|
|
|
|
export function Sidebar({ pages, opened }: { opened: boolean; pages?: MDXPage[] | undefined }) {
|
|
return (
|
|
<nav
|
|
className={`h-[calc(100vh - 73px)] dark:bg-dark-600 dark:border-dark-100 border-light-800 fixed top-[73px] left-0 bottom-0 z-20 w-full border-r bg-white ${
|
|
opened ? 'block' : 'hidden'
|
|
} lg:w-76 lg:max-w-76 lg:block`}
|
|
>
|
|
<Scrollbars
|
|
autoHide
|
|
hideTracksWhenNotNeeded
|
|
renderThumbVertical={(props) => <div {...props} className="dark:bg-dark-100 bg-light-900 z-30 rounded" />}
|
|
renderTrackVertical={(props) => (
|
|
<div {...props} className="absolute top-0.5 right-0.5 bottom-0.5 z-30 w-1.5 rounded" />
|
|
)}
|
|
universal
|
|
>
|
|
{pages ?? null}
|
|
</Scrollbars>
|
|
</nav>
|
|
);
|
|
}
|