mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
18 lines
358 B
TypeScript
18 lines
358 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} />
|
|
Manage Groups
|
|
</Link>
|
|
</Button>
|
|
);
|
|
};
|