mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-13 18:14:09 +00:00
23 lines
492 B
TypeScript
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">
|
|
|
|
<sup>
|
|
<Icon icon="share" iconSize={12} />
|
|
</sup>
|
|
</span>
|
|
);
|
|
};
|
|
|
|
export default ExternalLinkIcon;
|