Files
pse.dev/types/common.ts
Kalidou Diagne 5b37e78e6f feat: remove internationalization + clean up
- remove internationalization
2025-06-07 19:28:58 +09:00

20 lines
253 B
TypeScript

import { ProjectStatus } from "@/lib/types"
export type IThemeStatus = Partial<
Record<
ProjectStatus,
{
label: string
icon: any
}
>
>
export type IThemesButton = Record<
string,
{
label: string
icon: any
}
>