Sha256: b005a9ce4bde622d80bced3cd27b6aa2baa5c470a94499aaf9fc6a3760943e97
Contents?: true
Size: 482 Bytes
Versions: 2
Compression:
Stored size: 482 Bytes
Contents
import React from 'react'; declare type CarouselType = { initialPhoto?: string; onClose?: () => void; icon?: string; currentIndex: number; photos: { url: string; thumbnail: string; }[]; onChange: (index: number) => void; onClick?: (index: number) => void; setIndex?: (index: number) => void; }; export default function Carousel({ currentIndex, photos, onClick, onChange, setIndex, }: CarouselType): React.ReactElement; export {};
Version data entries
2 entries across 2 versions & 1 rubygems