@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian products.
10 lines (9 loc) • 406 B
TypeScript
import { ComponentType } from 'react';
import { BaseIconButtonProps } from '../IconButton/types';
export declare 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<{}>;
};