Interface NavigationProps

interface NavigationProps {
    href?: string;
    items?: NavigationItem[];
    label: string;
    onClick?: MouseEventHandler<HTMLButtonElement>;
}

Hierarchy

Properties

href?: string
items?: NavigationItem[]
label: string
onClick?: MouseEventHandler<HTMLButtonElement>