1Sponsor

Sidebar

Collapsible navigation sidebar panel

Terminal

Installation

pnpm dlx shadcn@latest add https://termcn.dev/r/sidebar.json

Usage

import { Sidebar } from "@/components/ui/sidebar";
<Sidebar
  title="Explorer"
  activeKey="inbox"
  items={[
    { key: "inbox", label: "Inbox", icon: "📥", badge: 3 },
    { key: "drafts", label: "Drafts", icon: "📝" },
  ]}
  onSelect={(key) => console.log(key)}
/>

API Reference

PropTypeDefault
itemsSidebarItem[]required
activeKeystringundefined
onSelect(key: string) => voidundefined
collapsedbooleanfalse
widthnumber20
titlestringundefined

SidebarItem

PropTypeDefault
keystringrequired
labelstringrequired
iconstringundefined
badgestring | numberundefined
childrenSidebarItem[]undefined