⬅️ Back to Table of Contents
📄 HiddenHeading.tsx
📊 Analysis Summary
Metric |
Count |
🔧 Functions |
1 |
📦 Imports |
2 |
💠 JSX Elements |
1 |
📐 Interfaces |
1 |
📚 Table of Contents
🛠️ File Location:
📂 packages/website/src/theme/MDXComponents/HiddenHeading.tsx
📦 Imports
Name |
Source |
React |
react |
styles |
./HiddenHeading.module.css |
JSX Elements
Component |
Type |
Props |
Children |
span |
element |
className={styles.hiddenHeading}, id={id} |
none |
Functions
HiddenHeading({ id }: HiddenHeadingProps): React.JSX.Element
Code
export function HiddenHeading({ id }: HiddenHeadingProps): React.JSX.Element {
return <span className={styles.hiddenHeading} id={id} />;
}
- Parameters:
{ id }: HiddenHeadingProps
- Return Type:
React.JSX.Element
Interfaces
HiddenHeadingProps
Interface Code
export interface HiddenHeadingProps {
id: string;
}
Properties
Name |
Type |
Optional |
Description |
id |
string |
✗ |
|