UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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