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