/** Default Tailwind classes for {@link OrgSwitcher}. startsim-o7s. * Semantic tokens only (startsim-1f3n) — theme-driven, dark-mode safe. */ export interface OrgSwitcherClassNames { root?: string label?: string select?: string } export const ORG_SWITCHER_DEFAULTS: Required = { root: 'inline-flex items-center gap-2', label: 'text-xs font-medium uppercase tracking-wide text-muted-foreground', select: 'rounded-md border border-input bg-background px-3 py-1.5 text-sm font-medium text-foreground outline-none transition-colors focus:border-ring focus:ring-1 focus:ring-ring', }