UNPKG

@octopusdeploy/design-system-components

Version:
15 lines (14 loc) 635 B
import type { DesignSystemLinkHref, ShowLinkAsActive } from "../../../routing/OctopusRoutingContext"; export interface MenuItemInternalLinkProps { path: DesignSystemLinkHref; label: string; shortDescription?: string; icon?: JSX.Element; showLinkAsActive?: ShowLinkAsActive; onClick?: () => void; autoFocus?: boolean; size?: LinkSize; disableImplicitEventTracking?: boolean; } export declare const MenuItemInternalLink: import("react").ForwardRefExoticComponent<MenuItemInternalLinkProps & import("react").RefAttributes<HTMLAnchorElement>>; export type LinkSize = "default" | "compact" | "spacious";