UNPKG

@heroui/theme

Version:

The default theme for HeroUI components

10 lines (8 loc) 203 B
/** * Determines if the theme is a base theme * * @param theme string * @returns "light" | "dark */ declare const isBaseTheme: (theme: string) => theme is "light" | "dark"; export { isBaseTheme };