dify/web/app/components/base/logo/logo-embedded-chat-avatar.tsx

19 lines
367 B
TypeScript
Raw Normal View History

2024-09-08 13:14:11 +08:00
import type { FC } from 'react'
type LogoEmbeddedChatAvatarProps = {
className?: string
}
const LogoEmbeddedChatAvatar: FC<LogoEmbeddedChatAvatarProps> = ({
className,
}) => {
return (
<img
src='/logo/logo-embedded-chat-avatar.png'
2025-03-19 18:27:02 +08:00
className={`block h-10 w-10 ${className}`}
2024-09-08 13:14:11 +08:00
alt='logo'
/>
)
}
export default LogoEmbeddedChatAvatar