Files
prowler/ui/components/manage-groups/manage-groups-button.tsx
T
Pablo Fernandez Guerra (PFE) d23c2f3b53 refactor(ui): standardize "Providers" wording across UI and docs (#10971)
Co-authored-by: Pablo F.G <pablo.fernandez@prowler.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-05 14:39:54 +02:00

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>
);
};