mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 11:56:55 +08:00
Co-authored-by: AkaraChen <akarachen@outlook.com> Co-authored-by: Yi <yxiaoisme@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: kurokobo <kuro664@gmail.com> Co-authored-by: Hiroshi Fujita <fujita-h@users.noreply.github.com>
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
|