UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

26 lines (25 loc) 716 B
import { type DrawerProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [DrawerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L566) * ## Props * @prop children * @prop hidden = $bindable() * @prop activateClickOutside = true * @prop position * @prop width * @prop backdrop = true * @prop backdropClass * @prop placement = "left" * @prop class: className * @prop classes * @prop transitionParams * @prop transitionType = fly * @prop bodyScrolling = false * @prop onclose * @prop ...restProps */ declare const Drawer: import("svelte").Component<DrawerProps, {}, "hidden">; type Drawer = ReturnType<typeof Drawer>; export default Drawer;