mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 13:01:56 +00:00
d004a0c931
Co-authored-by: sumit_chaturvedi <chaturvedi.sumit@tftus.com> Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com> Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com>
17 lines
600 B
TypeScript
17 lines
600 B
TypeScript
import React from "react";
|
|
|
|
export const SkeletonFindingSummary = () => {
|
|
return (
|
|
<div className="flex animate-pulse flex-col gap-4 rounded-lg p-4 shadow dark:bg-prowler-blue-400">
|
|
<div className="flex items-center justify-between gap-4">
|
|
<div className="h-5 w-1/3 rounded bg-default-200" />
|
|
<div className="flex items-center gap-2">
|
|
<div className="h-5 w-16 rounded bg-default-200" />
|
|
<div className="h-5 w-16 rounded bg-default-200" />
|
|
<div className="h-5 w-5 rounded-full bg-default-200" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|