import type { PropsWithChildren } from "react"; import { cn } from "../../lib/cn"; export function Navbar({ children, className, rightSlot, title, }: PropsWithChildren<{ className?: string; rightSlot?: PropsWithChildren["children"]; title?: string }>) { return (
{title ? {title} : null} {children}
{rightSlot}
); }