mirror of
https://github.com/langgenius/dify.git
synced 2025-07-18 14:52:32 +00:00
19 lines
363 B
TypeScript
19 lines
363 B
TypeScript
![]() |
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
|