import { Icon } from '@/components/ui/icon';

interface TableEmptyStateProps {
    label: string;
}

export function TableEmptyState({ label }: TableEmptyStateProps) {
    return (
        <div className="flex flex-col items-center justify-center gap-2 py-10 text-muted-foreground">
            <Icon icon="solar:inbox-line-duotone" className="size-10 opacity-40" />
            <span className="text-xs">{label}</span>
        </div>
    );
}
