/** * 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 clsx from 'clsx'; import {ThemeClassNames} from '@docusaurus/theme-common'; import {isActiveSidebarItem} from '@docusaurus/plugin-content-docs/client'; import Link from '@docusaurus/Link'; import isInternalUrl from '@docusaurus/isInternalUrl'; import IconExternalLink from '@theme/Icon/ExternalLink'; import type {Props} from '@theme/DocSidebarItem/Link'; import styles from './styles.module.css'; function LinkLabel({label}: {label: string}) { return {label}; } export default function DocSidebarItemLink({ item, onItemClick, activePath, level, index, ...props }: Props): ReactNode { const {href, label, className, autoAddBaseUrl} = item; const isActive = isActiveSidebarItem(item, activePath); const isInternalLink = isInternalUrl(href); return (