interface NavListItemProps {
    href?: string;
    icon?: ReactNode;
    onButtonClick?: MouseEventHandler<HTMLLIElement>;
    primary: ReactNode;
    to?: To;
    tooltip?: string;
}

Hierarchy (view full)

Properties

href?: string
icon?: ReactNode
onButtonClick?: MouseEventHandler<HTMLLIElement>
primary: ReactNode
to?: To
tooltip?: string