@octopusdeploy/design-system-components
Version:
The design systems component library.
18 lines (17 loc) • 590 B
TypeScript
import type React from "react";
interface TopNavBarProps {
logo?: React.ReactElement;
searchBar?: React.ReactElement;
/**
* @deprecated Usage of this banner prop should consider using our in-app messaging tool first.
*/
banner?: React.ReactElement;
actions?: TopNavBarActionData[];
onExpandMenu: () => void;
}
export interface TopNavBarActionData {
key: string;
content: React.ReactElement;
}
export declare function TopNavBar({ logo, searchBar, banner, actions, onExpandMenu }: TopNavBarProps): import("react/jsx-runtime").JSX.Element;
export {};