/* * SPDX-FileCopyrightText: 2024 Kristóf Marussy * * SPDX-License-Identifier: MIT */ import Link from '@docusaurus/Link'; import styles from './Elsewhere.module.css'; export default function Elsewhere({ label, links, }: { label: React.ReactNode; links: { href: string; icon: React.ReactNode; }[]; }) { return (

{label}

); }