UNPKG

react-wifi-status-indicator

Version:
19 lines (18 loc) 475 B
import { FC } from 'react'; export declare enum WifiStatusType { Excellent = "Excellent", Good = "Good", Fair = "Fair", Poor = "Poor", Unavailable = "Unavailable", Error = "Error", Searching = "Searching" } export interface IWifiStatusProps { status: WifiStatusType; color?: string; errorColor?: string; offlineColor?: string; width?: string | number; } export declare const WifiStatus: FC<IWifiStatusProps>;