Files
prowler/ui/components/providers/add-provider-button.tsx
2025-11-19 11:37:17 +01:00

19 lines
343 B
TypeScript

"use client";
import Link from "next/link";
import { Button } from "@/components/shadcn";
import { AddIcon } from "../icons";
export const AddProviderButton = () => {
return (
<Button asChild>
<Link href="/providers/connect-account">
Add Cloud Provider
<AddIcon size={20} />
</Link>
</Button>
);
};