mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-05-06 08:47:18 +00:00
d23c2f3b53
Co-authored-by: Pablo F.G <pablo.fernandez@prowler.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
"use client";
|
|
|
|
import { SettingsIcon } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
import { Button } from "@/components/shadcn";
|
|
|
|
export const ManageGroupsButton = () => {
|
|
return (
|
|
<Button asChild variant="outline">
|
|
<Link href="/manage-groups">
|
|
<SettingsIcon size={20} />
|
|
Provider Groups
|
|
</Link>
|
|
</Button>
|
|
);
|
|
};
|