wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import type { FC } from 'react'
import { WEB_PREFIX } from '@/config'
 
type LogoEmbeddedChatAvatarProps = {
  className?: string
}
const LogoEmbeddedChatAvatar: FC<LogoEmbeddedChatAvatarProps> = ({
  className,
}) => {
  return (
    <img
      src={`${WEB_PREFIX}/logo/logo-embedded-chat-avatar.png`}
      className={`block h-10 w-10 ${className}`}
      alt='logo'
    />
  )
}
 
export default LogoEmbeddedChatAvatar