mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-28 11:02:03 +08:00
21 lines
344 B
TypeScript
21 lines
344 B
TypeScript
import type { FC } from 'react'
|
|
import classNames from 'classnames'
|
|
|
|
type LogoSiteProps = {
|
|
className?: string
|
|
}
|
|
|
|
const LogoSite: FC<LogoSiteProps> = ({
|
|
className,
|
|
}) => {
|
|
return (
|
|
<img
|
|
src='/logo/logo-site.png'
|
|
className={classNames('block w-auto h-10', className)}
|
|
alt='logo'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default LogoSite
|