mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 16:38:23 +00:00
* make leaderboards go vrooom * goog * Make leaderboards great again * Bit o' cleanup? * goog * goog * Greptile
10 lines
350 B
TypeScript
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"}`;
|