You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logo-embedded-chat-avatar.tsx 419B

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