mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-08 21:58:05 -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
|
|
}
|
|
>
|