first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import * as React from 'react';
export type FocusRectsProviderProps = {
/**
* Ref to the root element that this is providing focus rects for.
*/
providerRef: React.RefObject<HTMLElement | null>;
/**
* Indicates that this is the root of a layer, and should not inherit the providerRef from a parent context.
*/
layerRoot?: boolean;
children?: React.ReactNode;
};
export declare const FocusRectsProvider: React.FC<FocusRectsProviderProps>;