import { AnchorHTMLAttributes, CSSProperties, ReactNode } from 'react';
export default function ExternalLink({
children,
title,
...props
}: AnchorHTMLAttributes & {
children: ReactNode;
style?: CSSProperties;
title?: string;
className?: string;
}) {
return (
{children}
);
}