mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 19:01:47 +08:00
31 lines
751 B
TypeScript
31 lines
751 B
TypeScript
import cn from '@/utils/classnames'
|
|
type Props = {
|
|
className?: string
|
|
orgName?: string
|
|
packageName: string
|
|
packageNameClassName?: string
|
|
}
|
|
|
|
const OrgInfo = ({
|
|
className,
|
|
orgName,
|
|
packageName,
|
|
packageNameClassName,
|
|
}: Props) => {
|
|
return (
|
|
<div className={cn('flex items-center h-4 space-x-0.5', className)}>
|
|
{orgName && (
|
|
<>
|
|
<span className='shrink-0 text-text-tertiary system-xs-regular'>{orgName}</span>
|
|
<span className='shrink-0 text-text-quaternary system-xs-regular'>/</span>
|
|
</>
|
|
)}
|
|
<span className={cn('shrink-0 w-0 grow truncate text-text-tertiary system-xs-regular', packageNameClassName)}>
|
|
{packageName}
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default OrgInfo
|