dify / web /app /components /base /logo /logo-embeded-chat-header.tsx
kikuepi's picture
Upload 4913 files
4304c6d verified
raw
history blame contribute delete
381 Bytes
import type { FC } from 'react'
type LogoEmbededChatHeaderProps = {
className?: string
}
const LogoEmbededChatHeader: FC<LogoEmbededChatHeaderProps> = ({
className,
}) => {
return (
<img
src='/logo/logo-embeded-chat-header.png'
className={`block w-auto h-6 ${className}`}
alt='logo'
/>
)
}
export default LogoEmbededChatHeader