stream-chat-react
Version:
React components to create chat conversations or livestream style chat
11 lines (10 loc) • 795 B
TypeScript
import React from 'react';
import type { PinIndicatorProps } from './types';
import type { DefaultStreamChatGenerics, IconProps } from '../../types/types';
export declare const ActionsIcon: ({ className }: IconProps) => React.JSX.Element;
export declare const ReactionIcon: ({ className }: IconProps) => React.JSX.Element;
export declare const ThreadIcon: ({ className }: IconProps) => React.JSX.Element;
export declare const PinIcon: () => React.JSX.Element;
export declare const PinIndicator: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ message, t, }: PinIndicatorProps<StreamChatGenerics>) => React.JSX.Element | null;
export declare const MessageDeliveredIcon: () => React.JSX.Element;
export declare const MessageErrorIcon: () => React.JSX.Element;