@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines (11 loc) • 346 B
TypeScript
/// <reference types="react" />
import './index.scss';
interface Props {
coverImage?: string;
title?: string;
subTitle?: string;
amIOperator?: boolean;
onActionClick?(): void;
}
export default function OpenchannelConversationHeader({ coverImage, title, subTitle, amIOperator, onActionClick, }: Props): JSX.Element;
export {};