UNPKG

@rkosafo/cai.components

Version:

This package is under development and not ready for public use.

8 lines (7 loc) 284 B
import type { ClassValue } from "clsx"; import * as themes from "./themes.js"; export type ThemeConfig = { [K in keyof typeof themes]?: (typeof themes)[K]["slots"] extends undefined ? ClassValue : Partial<{ [L in keyof (typeof themes)[K]["slots"]]: ClassValue; }>; };