UNPKG

@octopusdeploy/design-system-components

Version:
16 lines (15 loc) 466 B
import type React from "react"; import type { DesignSystemLinkHref } from "../../routing/OctopusRoutingContext"; type SideNavBarLogoProps = { /** * The icon for this link. */ icon: React.ReactNode; /** * The link location. */ href: DesignSystemLinkHref; accessibleName: string; }; export declare function SideNavBarLogo({ icon, href, accessibleName }: SideNavBarLogoProps): import("react/jsx-runtime").JSX.Element; export {};