13 lines
249 B
TypeScript
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>
|
|
)
|
|
}
|