@octopusdeploy/design-system-components
Version:
The design systems component library.
13 lines (12 loc) • 612 B
TypeScript
import type { ReactElement } from "react";
import type { DesignSystemLinkHref } from "../../routing";
import type { PageTitleBadge, PageTitleStatusBadge } from "../Page/index";
import type { HeaderPrimaryLogo } from "./HeaderPrimary";
export interface LeadingSegmentProps {
logo?: HeaderPrimaryLogo;
title: string;
titleIcon?: ReactElement;
titleBadges?: (PageTitleBadge | PageTitleStatusBadge)[];
logoLinkURL?: DesignSystemLinkHref;
}
export declare function LeadingSegment({ logo, logoLinkURL, title, titleIcon, titleBadges }: LeadingSegmentProps): import("react/jsx-runtime").JSX.Element;