Interface NavigationItem

interface NavigationItem {
    href?: string;
    icon?: LucideIcon;
    label: string;
    onClick?: MouseEventHandler<HTMLButtonElement>;
}

Properties

href?: string
icon?: LucideIcon
label: string
onClick?: MouseEventHandler<HTMLButtonElement>