@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian apps.
10 lines (9 loc) • 408 B
TypeScript
import { type ComponentType } from 'react';
import { type BaseIconButtonProps } from '../IconButton/types';
export type NotificationsProps = BaseIconButtonProps & {
/**
* Component to be used for the badge.
* Generally you'll want to use `NotificationIndicator` from [`@atlaskit/notification-indicator`](/packages/notifications/notification-indicator).
*/
badge: ComponentType<{}>;
};