12345678910111213141516171819 |
- 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
|