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.

10 lines 366 B
import * as React from 'react'; import { type LucideProps } from 'lucide-react'; interface SpinnerProps extends LucideProps { loading?: boolean; type?: 'default' | 'circle'; layout?: 'absolute' | 'centered' | 'overlay' | 'flow'; } declare const Spinner: React.FC<SpinnerProps>; export { Spinner, type SpinnerProps }; //# sourceMappingURL=spinner.d.ts.map