UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 286 B
import React from 'react'; import type { PropsWithChildren } from 'react'; export declare const UnreadCountBadge: ({ children, count, position, }: PropsWithChildren<{ count: number; position?: 'top-right' | 'bottom-right' | 'bottom-left' | 'top-left'; }>) => React.JSX.Element;