import classNames from "classnames"; import { Icon, Icons } from "@/components/Icon"; export function SidebarSection(props: { title: string; children: React.ReactNode; }) { return ( {props.title} {props.children} ); } export function SidebarLink(props: { children: React.ReactNode; icon: Icons; active?: boolean; onClick?: () => void; }) { return (
{props.title}