diff --git a/src/utils/ExternalLinkIcon.tsx b/src/utils/ExternalLinkIcon.tsx index 3bdba6b5..56e615dc 100644 --- a/src/utils/ExternalLinkIcon.tsx +++ b/src/utils/ExternalLinkIcon.tsx @@ -8,17 +8,15 @@ import React from 'react'; import './external-link.scss'; -class ExternalLinkIcon extends React.Component { - render(): JSX.Element { - return ( - - {' '} - - - - - ); - } -} +const ExternalLinkIcon: React.VFC = (_props) => { + return ( + +   + + + + + ); +}; export default ExternalLinkIcon;