Files
reacord/packages/docs/app/components/external-link.tsx
2021-12-29 23:01:25 -06:00

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>
)
}