File size: 369 Bytes
a8b3f00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import type { FC } from 'react'
type LogoEmbeddedChatHeaderProps = {
className?: string
}
const LogoEmbeddedChatHeader: FC<LogoEmbeddedChatHeaderProps> = ({
className,
}) => {
return (
<img
src='/logo/logo-embedded-chat-header.png'
className={`block w-auto h-6 ${className}`}
alt='logo'
/>
)
}
export default LogoEmbeddedChatHeader
|