flowbite-svelte
Version:
Flowbite components for Svelte
13 lines (12 loc) • 374 B
TypeScript
import type { ThemeProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ThemeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1746)
* ## Props
* @prop children
* @prop theme
*/
declare const Theme: import("svelte").Component<ThemeProps, {}, "">;
type Theme = ReturnType<typeof Theme>;
export default Theme;