# Live Chat Header Component

The component provides a visual representation of channel profile.

<figure><img src="/files/7NXWE6USXI0dx9lMPDru" alt=""><figcaption></figcaption></figure>

## Features

| Feature              | Description                                              |
| -------------------- | -------------------------------------------------------- |
| Display channel info | Display channel's display name, avatar, and member count |

### Customization

<table><thead><tr><th width="233">Config ID</th><th width="120">Config Key</th><th width="123">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>live_chat/chat_header/*</code></td><td><code>theme</code></td><td>Component</td><td>You can customize component theme </td></tr></tbody></table>

For more details on customization, please refer to the [Customization](/social-plus-uikit/uikit-4/customization.md) page.

## Usage

{% tabs %}
{% tab title="iOS" %}
{% embed url="<https://gist.github.com/amythee/3ffeeb79032f77481b71123d6e8ee5d6>" %}
{% endtab %}

{% tab title="Android" %}
{% embed url="<https://gist.github.com/38c1960c262a167d9ae57eb1be59e007>" %}
{% endtab %}

{% tab title="React" %}

```tsx
import React from 'react';
import { AmityLiveChatHeader } from '@amityco/ui-kit';

interface SampleLiveChatHeaderProps {
  channel: Amity.Channel
}

const SampleLiveChatHeader = ({ channel }: SampleLiveChatHeaderProps) => {
  // Passing channel model
  return <AmityLiveChatHeader channel={channel} />
}

export default SampleLiveChatHeader;

```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.social.plus/social-plus-uikit/uikit-4/chat/live-chat/live-chat-page/live-chat-header-component.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
