mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 02:46:52 +08:00
19 lines
297 B
TypeScript
19 lines
297 B
TypeScript
import type { FC } from 'react'
|
|
|
|
type LogoSiteProps = {
|
|
className?: string
|
|
}
|
|
const LogoSite: FC<LogoSiteProps> = ({
|
|
className,
|
|
}) => {
|
|
return (
|
|
<img
|
|
src='/logo/logo-site.png'
|
|
className={`block w-auto h-10 ${className}`}
|
|
alt='logo'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default LogoSite
|