UNPKG

@octopusdeploy/design-system-components

Version:
15 lines (14 loc) 594 B
import type React from "react"; import type { DesignSystemLinkHref, ShowLinkAsActive } from "../../routing/index"; interface AreaNavListLinkProps { href: DesignSystemLinkHref; showLinkAsActive?: ShowLinkAsActive; label: string; accessibleName?: string; onClick?: () => void; icon?: React.ReactNode; showNewBadge?: boolean; showAlphaBadge?: boolean; } export declare function AreaNavListLink({ href, showLinkAsActive, label, accessibleName, onClick, icon, showNewBadge, showAlphaBadge }: AreaNavListLinkProps): import("react/jsx-runtime").JSX.Element; export {};