lightbox.js-react
Version:
React lightbox with animation and customization options
31 lines (28 loc) • 771 B
text/typescript
import React__default, { ReactNode } from 'react';
interface ImageProps {
children?: ReactNode;
ref?: any;
fullScreen?: boolean;
backgroundColor?: string;
theme?: string;
iconColor?: any;
modalClose?: string;
image?: any;
roundedImages?: boolean;
disableImageZoom?: boolean;
showFullScreenIcon?: boolean;
showMagnificationIcons?: boolean;
showControls?: boolean;
downloadImages?: boolean;
rtl?: boolean;
width?: number | null;
height?: number | null;
framework?: string;
lightboxIdentifier?: string;
images?: any;
lightboxImgClass?: string;
wrapperClassName?: string;
className?: string;
}
declare const Image: React__default.FC<ImageProps>;
export { Image, type ImageProps };