import { renderLucideIcon } from "./Lucide"; interface SidebarGroupHeaderProps { icon?: string; title: string; } export default function SidebarGroupHeader({ icon, title }: SidebarGroupHeaderProps) { return (
{icon && ( {renderLucideIcon(icon, "h-3.5 w-3.5")} )}

{title}

); }