UNPKG

@reusable-ui/modal

Version:

Overlays a dialog to the entire site's page.

8 lines (7 loc) 290 B
export type BackdropStyle = 'regular' | 'hidden' | 'interactive' | 'static'; export interface BackdropVariant { backdropStyle?: BackdropStyle; } export declare const useBackdropVariant: ({ backdropStyle }: BackdropVariant) => { class: "hidden" | "interactive" | "static" | null; };