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