dify/web/app/components/plugins/card/base/org-info.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

32 lines
807 B
TypeScript

import { cn } from '@langgenius/dify-ui/cn'
type Props = Readonly<{
className?: string
orgName?: string
packageName: string
packageNameClassName?: string
}>
const OrgInfo = ({ className, orgName, packageName, packageNameClassName }: Props) => {
return (
<div className={cn('flex h-4 items-center space-x-0.5', className)}>
{orgName && (
<>
<span className="shrink-0 system-xs-regular text-text-tertiary">{orgName}</span>
<span className="shrink-0 system-xs-regular text-text-quaternary">/</span>
</>
)}
<span
className={cn(
'w-0 shrink-0 grow truncate system-xs-regular text-text-tertiary',
packageNameClassName,
)}
>
{packageName}
</span>
</div>
)
}
export default OrgInfo