fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
25 lines (24 loc) • 674 B
TypeScript
import { ImageProps } from "fumadocs-core/framework";
import * as react_jsx_runtime3 from "react/jsx-runtime";
import { ComponentProps } from "react";
import { UncontrolledProps } from "react-medium-image-zoom";
//#region src/components/image-zoom.d.ts
type ImageZoomProps = ImageProps & {
/**
* Image props when zoom in
*/
zoomInProps?: ComponentProps<'img'>;
/**
* Props for `react-medium-image-zoom`
*/
rmiz?: UncontrolledProps;
};
declare function ImageZoom({
zoomInProps,
children,
rmiz,
...props
}: ImageZoomProps): react_jsx_runtime3.JSX.Element;
//#endregion
export { ImageZoom, ImageZoomProps };
//# sourceMappingURL=image-zoom.d.ts.map