({ label }: SectionHeaderProps)
| 8 | } |
| 9 | |
| 10 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected