import { Anchor, CSSProperties } from '@mantine/core'; import { AnchorHTMLAttributes, ReactNode } from 'react'; interface ExternalLinkUnstyledProps extends AnchorHTMLAttributes { children: ReactNode; style?: CSSProperties; title?: string; className?: string; newTab?: boolean; } export const ExternalLinkUnstyled = ({ children, newTab = true, ...props }: ExternalLinkUnstyledProps) => ( {children} );