synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
13 lines (12 loc) • 485 B
TypeScript
import React from 'react';
import '@brainhubeu/react-carousel/lib/style.css';
export declare type CarouselProps = {
children: React.ReactElement[];
isLoading?: boolean;
};
/**
* Responsive carousel. The component will display a loading spinner if no children are passed via props.
* Note that the child components must accept a className prop, or its class will be overriden
*/
export declare const Carousel: React.FunctionComponent<CarouselProps>;
export default Carousel;