import * as React from "react"; import { type LucideIcon } from "lucide-react"; import { cn } from "@/lib/utils"; export interface NavButtonProps extends React.ButtonHTMLAttributes { icon: LucideIcon; label: string; active?: boolean; count?: number; } const NavButton = React.forwardRef( ({ icon: Icon, label, active, count, className, ...props }, ref) => { return ( ); } ); NavButton.displayName = "NavButton"; export { NavButton };