mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 04:21:52 +00:00
21 lines
403 B
TypeScript
21 lines
403 B
TypeScript
"use client";
|
|
|
|
import { SettingsIcon } from "lucide-react";
|
|
|
|
import { CustomButton } from "../ui/custom";
|
|
|
|
export const ManageGroupsButton = () => {
|
|
return (
|
|
<CustomButton
|
|
asLink="/manage-groups"
|
|
ariaLabel="Manage Groups"
|
|
variant="dashed"
|
|
color="warning"
|
|
size="md"
|
|
startContent={<SettingsIcon size={20} />}
|
|
>
|
|
Manage Groups
|
|
</CustomButton>
|
|
);
|
|
};
|