UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

15 lines (14 loc) 520 B
import type { BottomNavHeaderItemProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [BottomNavHeaderItemProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L310) * ## Props * @prop itemName * @prop active * @prop class: className * @prop ...restProps */ declare const BottomNavHeaderItem: import("svelte").Component<BottomNavHeaderItemProps, {}, "">; type BottomNavHeaderItem = ReturnType<typeof BottomNavHeaderItem>; export default BottomNavHeaderItem;