UNPKG

@connectycube/chat-widget

Version:

A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.

8 lines 337 B
import * as React from 'react'; import { type LucideProps } from 'lucide-react'; interface StatusSentProps extends LucideProps { status?: 'wait' | 'sent' | 'read' | 'lost' | null | undefined; } declare const StatusSent: React.FC<StatusSentProps>; export { StatusSent, type StatusSentProps }; //# sourceMappingURL=status-sent.d.ts.map