Files
reacord/packages/website/app/modules/dom/external-link.tsx
2022-01-12 13:15:09 -06:00

13 lines
249 B
TypeScript

import type { ComponentPropsWithoutRef } from "react"
export function ExternalLink({
children,
...props
}: ComponentPropsWithoutRef<"a">) {
return (
<a target="_blank" rel="noopener noreferrer" {...props}>
{children}
</a>
)
}