MCPcopy Create free account
hub / github.com/Fibi66/FeiControl / SectionHeader

Function SectionHeader

src/components/TenacitOS/SectionHeader.tsx:10–42  ·  view source on GitHub ↗
({ label }: SectionHeaderProps)

Source from the content-addressed store, hash-verified

8}
9
10export function SectionHeader({ label }: SectionHeaderProps) {
11 return (
12 <div
13 className="flex items-center gap-3"
14 style={{
15 fontFamily: "var(--font-body)",
16 }}
17 >
18 {/* Accent Line */}
19 <div
20 style={{
21 width: "24px",
22 height: "2px",
23 backgroundColor: "var(--accent)",
24 borderRadius: "1px",
25 }}
26 />
27
28 {/* Section Label */}
29 <span
30 style={{
31 fontSize: "11px",
32 fontWeight: 700,
33 letterSpacing: "2px",
34 color: "var(--text-secondary)",
35 textTransform: "uppercase",
36 }}
37 >
38 {label}
39 </span>
40 </div>
41 );
42}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected