UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

12 lines (11 loc) 411 B
import { IImage } from '../interfaces/IImage'; export interface ImageSliderProps { title?: string; images: IImage[]; withLightbox?: boolean; showTags?: boolean; fullBleed?: boolean; id?: string; className?: string; } export declare function ImageSlider({ images, className, title, fullBleed, id, withLightbox, showTags, }: ImageSliderProps): import("react/jsx-runtime").JSX.Element;