mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 03:58:31 +08:00
29 lines
730 B
TypeScript
29 lines
730 B
TypeScript
import type { FC } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import * as React from 'react'
|
|
import { useMemo } from 'react'
|
|
|
|
type Props = Readonly<{
|
|
className?: string
|
|
text: string
|
|
descriptionLineRows: number
|
|
}>
|
|
|
|
const Description: FC<Props> = ({ className, text, descriptionLineRows }) => {
|
|
const lineClassName = useMemo(() => {
|
|
if (descriptionLineRows === 1) return 'h-4 truncate'
|
|
else if (descriptionLineRows === 2) return 'h-8 line-clamp-2'
|
|
else return 'h-12 line-clamp-3'
|
|
}, [descriptionLineRows])
|
|
return (
|
|
<div
|
|
className={cn('system-xs-regular text-text-tertiary', lineClassName, className)}
|
|
title={text}
|
|
>
|
|
{text}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Description
|