UNPKG

@atlaskit/atlassian-navigation

Version:

A horizontal navigation component for Atlassian apps.

11 lines (10 loc) 281 B
import { type ComponentType, type ReactNode } from 'react'; export type BadgeProps = { id: string; badge: ComponentType<{}>; children: ReactNode; /** * Used to override the accessibility role for the element. */ role?: 'presentation' | 'listitem'; };