@octopusdeploy/design-system-components
Version:
The design systems component library.
16 lines (15 loc) • 471 B
TypeScript
import type React from "react";
export interface NavigationBarActionProps {
items: NavigationBarActionData[];
}
export interface NavigationBarActionData {
/**
* A locally unique identifier for the action.
*/
key: string;
/**
* A custom react element to use for the action.
*/
content: React.ReactElement;
}
export declare function NavigationBarActions({ items }: NavigationBarActionProps): import("react/jsx-runtime").JSX.Element;