UNPKG

react-native-chating-ui-kit

Version:

CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly

26 lines (25 loc) 764 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { StatusIndicatorStyle } from './StatusIndicatorStyle'; import { ImageType } from '../../base'; /** * * CometChatStatusIndicator is a component useful for indicating the status of user/group * This component displays the online/offline status of user/group * * @Version 1.0.0 * @author CometChat * */ export interface CometChatStatusIndicatorInterface { backgroundImage?: ImageType; style?: StyleProp<ViewStyle>; backgroundColor?: string; } export declare const CometChatStatusIndicator: { (props: CometChatStatusIndicatorInterface): React.JSX.Element; defaultProps: { backgroundImage: string; style: StatusIndicatorStyle; }; };