react-material-ui-carousel
Version:
A Generic, extendible Carousel UI component for React using Material UI
13 lines (12 loc) • 464 B
TypeScript
import { ReactNode } from "react";
import { SanitizedCarouselNavProps } from "./util";
export interface IndicatorProps {
IndicatorIcon?: ReactNode;
length: number;
active: number;
press: Function;
indicatorContainerProps: SanitizedCarouselNavProps;
indicatorIconButtonProps: SanitizedCarouselNavProps;
activeIndicatorIconButtonProps: SanitizedCarouselNavProps;
}
export declare const Indicators: (props: IndicatorProps) => JSX.Element;