dify / web /app /components /base /logo /logo-embedded-chat-header.tsx
Severian's picture
initial commit
a8b3f00
raw
history blame
369 Bytes
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