Files
woonoow-docs/components/markdown/link.tsx
2025-05-03 21:10:51 +07:00

15 lines
301 B
TypeScript

import NextLink from "next/link";
import { ComponentProps } from "react";
export default function Link({ href, ...props }: ComponentProps<"a">) {
if (!href) return null;
return (
<NextLink
href={href}
{...props}
target="_blank"
rel="noopener noreferrer"
/>
);
}