UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

12 lines (11 loc) 474 B
import React from 'react'; import type { IconProps } from '../../types/types'; type ReactionSelectorWithButtonProps = { ReactionIcon: React.ComponentType<IconProps>; }; /** * Internal convenience component - not to be exported. It just groups the button and the dialog anchor and thus prevents * cluttering the parent component. */ export declare const ReactionSelectorWithButton: ({ ReactionIcon, }: ReactionSelectorWithButtonProps) => React.JSX.Element; export {};