import {ReactElement} from "react" import {HiOutlineExternalLink} from "react-icons/hi" import {Box, BoxProps} from "@mui/material" export interface ExternalLinkIndicationProps extends BoxProps {} export default function ExternalLinkIndication({ children, ...props }: ExternalLinkIndicationProps): ReactElement { return ( {children} ) }