UNPKG

react-advanced-gallery

Version:

A customizable React image gallery component with Bootstrap styling, fullscreen mode, animations, and support for various media types

11 lines (10 loc) 512 B
import { GalleryItem as GalleryItemType } from '../types'; interface GalleryItemProps { item: GalleryItemType; onImageClick: (image: GalleryItemType) => void; onFavoriteToggle: (image: GalleryItemType) => void; onImageRemove: (image: GalleryItemType) => void; animationType: 'fade' | 'slide' | 'zoom' | 'none'; } export declare function GalleryItem({ item, onImageClick, onFavoriteToggle, onImageRemove, animationType }: GalleryItemProps): import("react/jsx-runtime").JSX.Element; export {};