mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-29 01:28:22 +08:00
20 lines
369 B
TypeScript
20 lines
369 B
TypeScript
import type { FC } from 'react'
|
|
|
|
type LogoEmbeddedChatHeaderProps = {
|
|
className?: string
|
|
}
|
|
|
|
const LogoEmbeddedChatHeader: FC<LogoEmbeddedChatHeaderProps> = ({
|
|
className,
|
|
}) => {
|
|
return (
|
|
<img
|
|
src='/logo/logo-embedded-chat-header.png'
|
|
className={`block w-auto h-6 ${className}`}
|
|
alt='logo'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default LogoEmbeddedChatHeader
|