UNPKG

@octopusdeploy/design-system-components

Version:
16 lines (15 loc) 471 B
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;