UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

22 lines (21 loc) 677 B
import type { SplitPaneProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [SplitPaneProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2239) * ## Props * @prop direction = "horizontal" * @prop minSize = 100 * @prop responsive = true * @prop breakpoint = 768 * @prop transition: transitionProp = true * @prop transitionDuration = 150 * @prop keyboardStep = 2 * @prop initialSizes * @prop onResize * @prop children * @prop class: className = "" */ declare const SplitPane: import("svelte").Component<SplitPaneProps, {}, "">; type SplitPane = ReturnType<typeof SplitPane>; export default SplitPane;