// SPDX-License-Identifier: MIT // Copyright (c) 2021 The Pybricks Authors // Icon for indicating external links import { Icon } from '@blueprintjs/core'; import React from 'react'; import './external-link.scss'; const ExternalLinkIcon: React.VFC = (_props) => { return (   ); }; export default ExternalLinkIcon;