MCPcopy Create free account
hub / github.com/TejasQ/tejaskumar.com / SectionHeading

Function SectionHeading

components/SectionHeading.tsx:4–16  ·  view source on GitHub ↗
({
  children,
  ...rest
}: React.DetailedHTMLProps<
  React.HTMLAttributes<HTMLSpanElement>,
  HTMLSpanElement
> & { children?: ReactNode })

Source from the content-addressed store, hash-verified

2import styles from "./SectionHeading.module.css";
3
4export default function SectionHeading({
5 children,
6 ...rest
7}: React.DetailedHTMLProps<
8 React.HTMLAttributes<HTMLSpanElement>,
9 HTMLSpanElement
10> & { children?: ReactNode }) {
11 return (
12 <span {...rest} className={styles.span}>
13 {children}
14 </span>
15 );
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected