@bigdigital/kiosk-content-sdk
Version:
A Firebase-powered Content Management System SDK optimized for kiosks with offline support, template management, and real-time connection monitoring
16 lines • 585 B
TypeScript
import React from 'react';
interface OfflineIndicatorProps {
/** Custom class name for styling */
className?: string;
/** Text to show when online */
onlineText?: string;
/** Text to show when offline */
offlineText?: string;
/** Custom inline styles */
style?: React.CSSProperties;
/** Whether the app is currently online */
isOnline: boolean;
}
export declare function OfflineIndicator({ className, onlineText, offlineText, style, isOnline }: OfflineIndicatorProps): React.JSX.Element;
export {};
//# sourceMappingURL=OfflineIndicator.d.ts.map