'use client' import { cn } from '@langgenius/dify-ui/cn' import { useTranslation } from '#i18n' import { Group } from '@/app/components/base/icons/src/vender/other' import Line from './line' type Props = Readonly<{ text?: string lightCard?: boolean className?: string }> const Empty = ({ text, lightCard, className }: Props) => { const { t } = useTranslation() return (