wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { FC } from 'react'
import React, { useMemo } from 'react'
import cn from '@/utils/classnames'
 
type Props = {
  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)}>
      {text}
    </div>
  )
}
 
export default Description