Files
woonoow-docs/components/markdown/LinkMdx.tsx
2025-05-18 15:40:46 +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"
/>
);
}