({ children }: { children: ReactNode })
| 43 | } |
| 44 | |
| 45 | function SectionLabel({ children }: { children: ReactNode }) { |
| 46 | return ( |
| 47 | <div className="text-[10.5px] font-semibold uppercase tracking-wider text-muted-foreground mb-2"> |
| 48 | {children} |
| 49 | </div> |
| 50 | ); |
| 51 | } |
| 52 | |
| 53 | export function SettingsMenu() { |
| 54 | const t = useT(); |
nothing calls this directly
no outgoing calls
no test coverage detected