UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 544 B
import type { ListPlaceholderProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ListPlaceholderProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1430) * ## Props * @prop itemNumber = 5 * @prop size = "md" * @prop rounded * @prop class: className * @prop classes * @prop ...restProps */ declare const ListPlaceholder: import("svelte").Component<ListPlaceholderProps, {}, "">; type ListPlaceholder = ReturnType<typeof ListPlaceholder>; export default ListPlaceholder;