first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import { type PropsWithChildren } from 'react';
export interface LinkAppleZoomProps extends PropsWithChildren {
/**
* Defines the rectangle used for the zoom transition's alignment. This rectangle is specified in the zoomed screen's coordinate space.
*
* @platform ios 18+
*/
alignmentRect?: {
x: number;
y: number;
width: number;
height: number;
};
}
/**
* When this component is used inside a Link, [zoom transition](https://developer.apple.com/documentation/uikit/enhancing-your-app-with-fluid-transitions?language=objc)
* will be used when navigating to the link's href.
*
* @platform ios 18+
*/
export declare function LinkAppleZoom(props: LinkAppleZoomProps): import("react").JSX.Element;
//# sourceMappingURL=link-apple-zoom.d.ts.map