hackatime/app/javascript/pages/Leaderboards/utils.ts
Mahad Kalam 28fe4739f5
Leaderboard Inertia'd + use cache + util dedup (#1121)
* make leaderboards go vrooom

* goog

* Make leaderboards great again

* Bit o' cleanup?

* goog

* goog

* Greptile
2026-03-30 14:39:05 +00:00

10 lines
350 B
TypeScript

export {
secondsToDetailedDisplay,
timeAgo,
rankDisplay,
streakTheme,
streakLabel,
} from "../../utils";
export const tabClass = (active: boolean) =>
`text-center px-4 py-2 rounded-full text-sm font-medium transition-all duration-200 whitespace-nowrap ${active ? "bg-primary text-on-primary" : "text-muted hover:text-surface-content"}`;