UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 500 B
import type { DarkmodeProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [DarkmodeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L475) * ## Props * @prop class: className * @prop lightIcon * @prop darkIcon * @prop size = "md" * @prop ariaLabel = "Dark mode" * @prop ...restProps */ declare const DarkMode: import("svelte").Component<DarkmodeProps, {}, "">; type DarkMode = ReturnType<typeof DarkMode>; export default DarkMode;