@clerk/clerk-js
Version:
Clerk JS library
10 lines (9 loc) • 454 B
TypeScript
import { NotificationBadge } from '../customizables';
import type { PropsOfComponent, ThemableCssProp } from '../styledSystem';
type NotificationCountBadgeProps = PropsOfComponent<typeof NotificationBadge> & {
notificationCount: number;
containerSx?: ThemableCssProp;
shouldAnimate?: boolean;
};
export declare const NotificationCountBadge: (props: NotificationCountBadgeProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};