Files
pybricks-code/src/utils/ExternalLinkIcon.tsx
T

23 lines
492 B
TypeScript

// 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 (
<span className="pb-external-link">
&nbsp;
<sup>
<Icon icon="share" iconSize={12} />
</sup>
</span>
);
};
export default ExternalLinkIcon;