2024-09-08 12:14:11 +07:00
|
|
|
import type { FC } from 'react'
|
|
|
|
|
|
|
|
|
|
type LogoEmbeddedChatHeaderProps = {
|
|
|
|
|
className?: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const LogoEmbeddedChatHeader: FC<LogoEmbeddedChatHeaderProps> = ({
|
|
|
|
|
className,
|
|
|
|
|
}) => {
|
|
|
|
|
return (
|
|
|
|
|
<img
|
|
|
|
|
src='/logo/logo-embedded-chat-header.png'
|
2025-03-21 17:41:03 +08:00
|
|
|
className={`block h-6 w-auto ${className}`}
|
2024-09-08 12:14:11 +07:00
|
|
|
alt='logo'
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default LogoEmbeddedChatHeader
|