@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines (11 loc) • 490 B
TypeScript
import { ReactElement } from 'react';
import './index.scss';
import { Colors } from '../../utils/color';
export interface NewMessageIndicatorProps {
children?: string | ReactElement;
className?: string | Array<string>;
separatorColor?: Colors;
onVisibilityChange?: (isVisible: boolean) => void;
}
declare const NewMessageIndicator: ({ children, className, onVisibilityChange, separatorColor, }: NewMessageIndicatorProps) => ReactElement;
export default NewMessageIndicator;