mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
"use client";
|
|
|
|
import { SettingsIcon } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
import { Button } from "@/components/shadcn";
|
|
|
|
export const MutedFindingsConfigButton = () => {
|
|
return (
|
|
<Button variant="outline" asChild>
|
|
<Link href="/mutelist">
|
|
<SettingsIcon size={20} />
|
|
Configure Mutelist
|
|
</Link>
|
|
</Button>
|
|
);
|
|
};
|