UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

16 lines (13 loc) 384 B
import React from 'react'; import { Reaction } from 'softchatjs-core'; type ReactionProps = { reactions: Reaction[]; position: "left" | "right"; conversationId: string; messageId: string; chatUserId: string; recipientId: string; layout?: 'stacked'; }; declare function Reactions(props: ReactionProps): React.JSX.Element; export { Reactions as default };