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