UNPKG

@atlaskit/atlassian-navigation

Version:

A horizontal navigation component for Atlassian apps.

11 lines (10 loc) 306 B
import { type ComponentType, type ReactNode, type ReactNodeArray } from 'react'; export type PrimaryItemsContainerProps = { moreLabel: ReactNode; items: ReactNodeArray; create?: ComponentType<{}>; testId?: string; }; export type PrimaryItemsContainerSkeletonProps = { count: number; };