This component displays channel info
Last updated 5 months ago
Was this helpful?
The component provides a visual representation of channel profile.
Feature
Description
Display channel info
Display channel's display name, avatar, and member count
live_chat/chat_header/*
theme
Component
You can customize component theme
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;
For more details on customization, please refer to the page.