1 | import * as React from 'react';
|
2 | import { ButtonProps } from '../Button';
|
3 | export declare enum NotificationBadgeVariant {
|
4 | read = "read",
|
5 | unread = "unread",
|
6 | attention = "attention"
|
7 | }
|
8 | export interface NotificationBadgeProps extends Omit<ButtonProps, 'variant'> {
|
9 |
|
10 | isRead?: boolean;
|
11 |
|
12 | variant?: NotificationBadgeVariant | 'read' | 'unread' | 'attention';
|
13 |
|
14 | count?: number;
|
15 |
|
16 | children?: React.ReactNode;
|
17 |
|
18 | className?: string;
|
19 |
|
20 | 'aria-label'?: string;
|
21 |
|
22 | attentionIcon?: React.ReactNode;
|
23 |
|
24 | icon?: React.ReactNode;
|
25 | }
|
26 | export declare const NotificationBadge: React.FunctionComponent<NotificationBadgeProps>;
|
27 |
|
\ | No newline at end of file |