File size: 203 Bytes
2deb2c5
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export function LoadingState({ label = "Loading intelligence snapshot" }: { label?: string }) {
  return (
    <div className="loading-state">
      <div />
      <span>{label}</span>
    </div>
  );
}