mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-09 14:18:02 -05:00
20 lines
253 B
TypeScript
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
|
|
}
|
|
>
|