/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, {type ReactNode} from 'react'; import {translate} from '@docusaurus/Translate'; import type {Props} from '@theme/Icon/ExternalLink'; import styles from './styles.module.css'; // References symbol in docusaurus-theme-classic/src/inlineSvgSprites.ts // See why: https://github.com/facebook/docusaurus/issues/5865 const svgSprite = '#theme-svg-external-link'; export default function IconExternalLink({ width = 13.5, height = 13.5, }: Props): ReactNode { return ( ); }