@longears-mobile/rcs-client-mockup
Version:
A React smartphone preview components for RCS client mockups.
15 lines (14 loc) • 660 B
TypeScript
/// <reference types="react" />
import { MessageBubbleProps } from '../../types';
/**
* MessageBubble component displays a message bubble with a timestamp and status.
*
* @component
* @param {MessageBubbleProps} props - The props for the component.
* @param {React.ReactNode} props.children - The content of the message bubble.
* @param {string} [props.timestamp] - The timestamp of the message.
* @param {string} [props.status] - The status of the message, can ber "read", "delivered", "sent".
* @returns {JSX.Element} The rendered message bubble component.
*/
declare const MessageBubble: React.FC<MessageBubbleProps>;
export default MessageBubble;