CometChatStatusIndicator is a customized component which indicates whether user is online or offline. You can customize the borderColor, borderSize, and backgroundColor of this component.
Properties
Usage
- HTML
- JavaScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
CometChatStatusIndicator is a customized component which indicates whether user is online or offline. You can customize the borderColor, borderSize, and backgroundColor of this component.
| Name | Type | Description |
|---|---|---|
| backgroundColor | string | Background color of the indicator |
| backgroundImage | string | Background image of the indicator |
| statusIndicatorStyle | Object | Styling properties of the element. |
<!--use the element-->
<cometchat-status-indicator
[statusIndicatorStyle]="statusIndicatorStyle"
></cometchat-status-indicator>
//styling properties
statusIndicatorStyle = {width: "28px",height: "28px", border: "1px solid transparent", borderRadius: "50px" };
Was this page helpful?