summaryrefslogtreecommitdiff
path: root/src/components/inline-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/inline-link.tsx')
-rw-r--r--src/components/inline-link.tsx28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/inline-link.tsx b/src/components/inline-link.tsx
new file mode 100644
index 0000000..f507688
--- /dev/null
+++ b/src/components/inline-link.tsx
@@ -0,0 +1,28 @@
+import { cn } from '@/lib/utils';
+import Link from 'next/link';
+import type { ReactNode } from 'react';
+
+export const InlineLink = ({
+ href,
+ children,
+ blank = false,
+ className,
+}: {
+ href: string;
+ children: ReactNode;
+ blank?: boolean;
+ className?: string;
+}) => {
+ return (
+ <Link
+ href={href}
+ className={cn(
+ 'text-fd-primary underline duration-300 hover:text-fd-primary/70',
+ className,
+ )}
+ target={blank ? '_blank' : undefined}
+ >
+ {children}
+ </Link>
+ );
+};