logo-embedded-chat-header.tsx 369 B

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