UNPKG

@octopusdeploy/design-system-components

Version:
9 lines (8 loc) 423 B
import type { DesignSystemLinkHref, ShowLinkAsActive } from "../../routing/OctopusRoutingContext"; export interface NavigationBarLinkProps { href: DesignSystemLinkHref; showLinkAsActive?: ShowLinkAsActive; label: string; accessibleName?: string; } export declare function NavigationBarLink({ href, showLinkAsActive, label, accessibleName }: NavigationBarLinkProps): import("react/jsx-runtime").JSX.Element;