UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

14 lines (13 loc) 553 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; import type { ImageSliderProps } from './ImageSlider'; export type ImageSliderThumbnailsProps = { currentSlideId: number; imageLabel?: string; scrollToSlide: (id: number) => void; thumbnails: ImageSliderProps['images']; } & HTMLAttributes<HTMLElement>; export declare const ImageSliderThumbnails: ({ currentSlideId, imageLabel, scrollToSlide, thumbnails, }: ImageSliderThumbnailsProps) => import("react/jsx-runtime").JSX.Element;