mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-19 17:49:06 +08:00
20 lines
419 B
TypeScript
20 lines
419 B
TypeScript
import type { FC } from 'react'
|
|
import { basePath } from '@/utils/var'
|
|
|
|
type LogoEmbeddedChatAvatarProps = {
|
|
className?: string
|
|
}
|
|
const LogoEmbeddedChatAvatar: FC<LogoEmbeddedChatAvatarProps> = ({
|
|
className,
|
|
}) => {
|
|
return (
|
|
<img
|
|
src={`${basePath}/logo/logo-embedded-chat-avatar.png`}
|
|
className={`block h-10 w-10 ${className}`}
|
|
alt='logo'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default LogoEmbeddedChatAvatar
|