@octopusdeploy/design-system-components
Version:
The design systems component library.
16 lines (15 loc) • 466 B
TypeScript
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 {};