UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 525 B
import type { ToolbarGroupProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ToolbarGroupProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1169) * ## Props * @prop children * @prop spacing * @prop padding * @prop position = "middle" * @prop class: className * @prop ...restProps */ declare const ToolbarGroup: import("svelte").Component<ToolbarGroupProps, {}, "">; type ToolbarGroup = ReturnType<typeof ToolbarGroup>; export default ToolbarGroup;