@octopusdeploy/design-system-components
Version:
The design systems component library.
9 lines (8 loc) • 423 B
TypeScript
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;