UNPKG

rightui

Version:

Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity

8 lines (7 loc) 335 B
import { Drawer as DrawerPrimitive } from "vaul-svelte"; type $$ComponentProps = DrawerPrimitive.ContentProps & { portalProps?: DrawerPrimitive.PortalProps; }; declare const DrawerContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type DrawerContent = ReturnType<typeof DrawerContent>; export default DrawerContent;