This commit is contained in:
Kismet Hasanaj
2026-05-02 20:07:02 +02:00
parent ce8672e283
commit 34dc9aec52
9428 changed files with 1733330 additions and 0 deletions
@@ -0,0 +1,2 @@
export declare function lock(): void;
export declare function unlock(): void;
@@ -0,0 +1,2 @@
export { Overlay } from './overlay';
export { OverlayBackdrop } from './overlay-backdrop';
@@ -0,0 +1,5 @@
type OverlayBackdropProps = {
fixed?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
export declare function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps): import("react/jsx-runtime").JSX.Element;
export {};
@@ -0,0 +1,7 @@
import * as React from 'react';
export type OverlayProps = React.HTMLAttributes<HTMLDivElement> & {
fixed?: boolean;
ref?: React.Ref<HTMLDivElement>;
};
declare const Overlay: React.FC<OverlayProps>;
export { Overlay };
@@ -0,0 +1,2 @@
declare const styles: string;
export { styles };