Files
prowler/ui/components/findings/muted.tsx
Víctor Fernández Poyatos 08690068fc feat(findings): Handle muted findings in API and UI (#7378)
Co-authored-by: Pablo Lara <larabjj@gmail.com>
2025-03-31 12:25:58 +02:00

20 lines
498 B
TypeScript

import { Tooltip } from "@nextui-org/react";
import { MutedIcon } from "../icons";
interface MutedProps {
isMuted: boolean;
}
export const Muted = ({ isMuted }: MutedProps) => {
if (isMuted === false) return null;
return (
<Tooltip content={"This finding is muted"} className="text-xs">
<div className="w-fit rounded-full border border-system-severity-critical/40 p-1">
<MutedIcon className="h-4 w-4 text-system-severity-critical" />
</div>
</Tooltip>
);
};