mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-02-09 02:30:43 +00:00
23 lines
428 B
TypeScript
23 lines
428 B
TypeScript
import { CustomLink } from "@/components/ui/custom/custom-link";
|
|
|
|
interface AuthFooterLinkProps {
|
|
text: string;
|
|
linkText: string;
|
|
href: string;
|
|
}
|
|
|
|
export const AuthFooterLink = ({
|
|
text,
|
|
linkText,
|
|
href,
|
|
}: AuthFooterLinkProps) => {
|
|
return (
|
|
<p className="text-small text-center">
|
|
{text}
|
|
<CustomLink size="md" href={href} target="_self">
|
|
{linkText}
|
|
</CustomLink>
|
|
</p>
|
|
);
|
|
};
|