stream-chat-react
Version:
React components to create chat conversations or livestream style chat
11 lines (10 loc) • 665 B
TypeScript
import React from 'react';
import type { PinIndicatorProps } from './types';
import type { 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: ({ message, t }: PinIndicatorProps) => React.JSX.Element | null;
export declare const MessageDeliveredIcon: () => React.JSX.Element;
export declare const MessageErrorIcon: () => React.JSX.Element;