mazey-lazy-load-images
    Preparing search index...

    Interface LazyImageGalleryProps

    interface LazyImageGalleryProps {
        className?: string;
        defaultAspectRatio?: number;
        defaultFallbackSrc?: string;
        defaultPlaceholderSrc?: string;
        gap?: string;
        items: readonly GalleryItem[];
        labels?: Partial<GalleryLabels>;
        minColumnWidth?: string;
        onImageError?: (context: ImageEventContext) => void;
        onImageLoad?: (context: ImageEventContext) => void;
        rootMargin?: string;
        style?: CSSProperties;
        unstyled?: boolean;
    }
    Index
    className?: string
    defaultAspectRatio?: number
    defaultFallbackSrc?: string
    defaultPlaceholderSrc?: string
    gap?: string
    items: readonly GalleryItem[]
    labels?: Partial<GalleryLabels>
    minColumnWidth?: string
    onImageError?: (context: ImageEventContext) => void
    onImageLoad?: (context: ImageEventContext) => void
    rootMargin?: string
    style?: CSSProperties
    unstyled?: boolean