mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
21 lines
352 B
TypeScript
21 lines
352 B
TypeScript
import type { FC } from 'react'
|
|
import classNames from '@/utils/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
|