UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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