@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.
9 lines • 363 B
TypeScript
import * as React from 'react';
import { type LucideProps } from 'lucide-react';
interface StatusCallProps extends LucideProps {
fromMe?: boolean;
status?: 'reject' | 'notAnswer' | 'hungUp' | 'cancel' | undefined;
}
declare const StatusCall: React.FC<StatusCallProps>;
export { StatusCall, type StatusCallProps };
//# sourceMappingURL=status-call.d.ts.map