Files
Frontend/src/app/components/rediect-button.tsx
Liam ac1d9b4f82
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m25s
fix return types
2024-04-18 03:51:41 +01:00

19 lines
455 B
TypeScript

import Link from "next/link";
import { ReactElement } from "react";
type ButtonProps = {
title: string;
url: string;
openInNewTab?: boolean;
};
export function RedirectButton({ title, url, openInNewTab }: ButtonProps): ReactElement {
return (
<div className="w-fit rounded-lg">
<Link href={url} target={openInNewTab ? "_blank" : ""}>
<p className="hover:text-primary transition-all">{title}</p>
</Link>
</div>
);
}