UNPKG

react-configurable-carousel

Version:

A simple and responsive configurable 2D/3D carousel React component

10 lines (9 loc) 266 B
import * as React from "react"; declare type CarouselItemProps = { isShowing: boolean; children?: React.ReactNode; height: string; outOfFocusDarken: boolean; }; export declare const CarouselItem: (props: CarouselItemProps) => JSX.Element; export {};