mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { Tooltip } from "@heroui/tooltip";
|
|
|
|
import { Button } from "@/components/shadcn";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
interface DeltaIndicatorProps {
|
|
delta: string;
|
|
}
|
|
|
|
export const DeltaIndicator = ({ delta }: DeltaIndicatorProps) => {
|
|
return (
|
|
<Tooltip
|
|
className="pointer-events-auto"
|
|
content={
|
|
<div className="flex gap-1 text-xs">
|
|
<span>
|
|
{delta === "new"
|
|
? "New finding."
|
|
: "Status changed since the previous scan."}
|
|
</span>
|
|
<Button
|
|
aria-label="Learn more about findings"
|
|
variant="link"
|
|
size="default"
|
|
className="text-button-primary h-auto min-w-0 p-0 text-xs"
|
|
asChild
|
|
>
|
|
<a
|
|
href="https://docs.prowler.com/user-guide/tutorials/prowler-app#step-8:-analyze-the-findings"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Learn more
|
|
</a>
|
|
</Button>
|
|
</div>
|
|
}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"h-2 w-2 min-w-2 cursor-pointer rounded-full",
|
|
delta === "new"
|
|
? "bg-system-severity-high"
|
|
: delta === "changed"
|
|
? "bg-system-severity-low"
|
|
: "bg-gray-500",
|
|
)}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
};
|