import { cn } from '@/lib/utils'; import { t } from 'i18next'; import { useIsDarkTheme } from '../theme-provider'; type EmptyProps = { className?: string; children?: React.ReactNode; }; const EmptyIcon = () => { const isDarkTheme = useIsDarkTheme(); return ( ); }; const Empty = (props: EmptyProps) => { const { className, children } = props; return (