mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-04-06 02:58:15 +00:00
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
"use client";
|
|
|
|
import { AddIcon } from "../icons";
|
|
import { CustomButton } from "../ui/custom";
|
|
|
|
export const AddProviderButton = () => {
|
|
return (
|
|
<CustomButton
|
|
asLink="/providers/connect-account"
|
|
ariaLabel="Add Cloud Provider"
|
|
variant="solid"
|
|
color="action"
|
|
size="md"
|
|
endContent={<AddIcon size={20} />}
|
|
>
|
|
Add Cloud Provider
|
|
</CustomButton>
|
|
);
|
|
};
|