import type { FC } from 'react' import * as React from 'react' import { useMemo } from 'react' import { cn } from '@/utils/classnames' type Props = { className?: string text: string descriptionLineRows: number } const Description: FC = ({ 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 (
{text}
) } export default Description