@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
11 lines (10 loc) • 385 B
TypeScript
import './index.scss';
import { ReactElement } from 'react';
import { SendableMessageType } from '../../utils';
interface Props {
className?: string | Array<string>;
replyingMessage: SendableMessageType;
onClose?: (message: SendableMessageType) => void;
}
export default function QuoteMessageInput({ className, replyingMessage, onClose, }: Props): ReactElement;
export {};