MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / SectionLabel

Function SectionLabel

apps/public/src/components/section.tsx:64–81  ·  view source on GitHub ↗
({
  children,
  className,
}: {
  children: React.ReactNode;
  className?: string;
})

Source from the content-addressed store, hash-verified

62}
63
64export function SectionLabel({
65 children,
66 className,
67}: {
68 children: React.ReactNode;
69 className?: string;
70}) {
71 return (
72 <span
73 className={cn(
74 'text-xs uppercase tracking-wider text-muted-foreground font-medium',
75 className,
76 )}
77 >
78 {children}
79 </span>
80 );
81}

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected