import type { ComponentPropsWithoutRef } from "react" export function ExternalLink({ children, ...props }: ComponentPropsWithoutRef<"a">) { return ( {children} ) }