rightui
Version:
Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity
8 lines (7 loc) • 335 B
TypeScript
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;