UNPKG

softchatjs-react-native

Version:

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

17 lines (14 loc) 425 B
import React from 'react'; import { Message } from 'softchatjs-core'; import { ChatTheme } from '../../../types.js'; import 'react-native'; type QuotedProps = { quotedMessage: Message | null; onPress: () => void; layout?: "stacked"; theme?: ChatTheme; position?: "left" | "right"; chatUserId?: string; }; declare function Quoted(props: QuotedProps): React.JSX.Element; export { Quoted as default };