import * as React from "react"; export const NewTabLink = ({ children, href, ...other }: { children: React.ReactNode; href: string; }) => { return ( {children} ); };