@grafana/ui
Version:
Grafana Components Library
15 lines (14 loc) • 554 B
TypeScript
interface CarouselImage {
path: string;
name: string;
}
export interface CarouselProps {
images: CarouselImage[];
}
/**
* The Carousel component displays a grid of image thumbnails that can be clicked to view full-sized images in a modal with navigation controls. It provides an elegant way to present collections of images or screenshots with fullscreen preview capabilities.
*
* https://developers.grafana.com/ui/latest/index.html?path=/docs/overlays-carousel--docs
*/
export declare const Carousel: React.FC<CarouselProps>;
export {};