UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 524 B
import type { DrawerHandleProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [DrawerHandleProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L623) * ## Props * @prop children * @prop placement * @prop "aria-label": ariaLabel * @prop class: className * @prop classes * @prop ...restProps */ declare const DrawerHandle: import("svelte").Component<DrawerHandleProps, {}, "">; type DrawerHandle = ReturnType<typeof DrawerHandle>; export default DrawerHandle;