logo-embedded-chat-avatar.tsx 367 B

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