mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 20:31:47 +08:00
22 lines
374 B
TypeScript
22 lines
374 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import classNames from '@/utils/classnames'
|
|
|
|
type LogoSiteProps = {
|
|
className?: string
|
|
}
|
|
|
|
const LogoSite: FC<LogoSiteProps> = ({
|
|
className,
|
|
}) => {
|
|
return (
|
|
<img
|
|
src={'/logo/logo.png'}
|
|
className={classNames('block w-[22.651px] h-[24.5px]', className)}
|
|
alt='logo'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default LogoSite
|