UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

12 lines (11 loc) 543 B
import React from 'react'; import type { IconProps } from '../../types/types'; import type { MessageContextValue } from '../../context/MessageContext'; export type MessageOptionsProps = Partial<Pick<MessageContextValue, 'handleOpenThread'>> & { ActionsIcon?: React.ComponentType<IconProps>; displayReplies?: boolean; ReactionIcon?: React.ComponentType<IconProps>; theme?: string; ThreadIcon?: React.ComponentType<IconProps>; }; export declare const MessageOptions: (props: MessageOptionsProps) => React.JSX.Element | null;