flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 507 B
TypeScript
import type { DividerProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [DividerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2147)
* ## Props
* @prop direction
* @prop index
* @prop onMouseDown
* @prop onKeyDown
* @prop isDragging
* @prop currentSize
* @prop class: className = ""
*/
declare const Divider: import("svelte").Component<DividerProps, {}, "">;
type Divider = ReturnType<typeof Divider>;
export default Divider;