mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
import React from 'react';
|
|
|
|
export const HeaderText = ({type, text, link}): JSX.Element => {
|
|
|
|
const Header = type;
|
|
|
|
return (
|
|
<Header className="anchor anchorWithHideOnScrollNavbar_node_modules-@docusaurus-theme-classic-lib-next-theme-Heading-styles-module">
|
|
{text}
|
|
{link ? <a className="hash-link" href={`#${link}`} title="Direct link to heading"/> : null}
|
|
</Header>
|
|
);
|
|
|
|
};
|