react-configurable-carousel
Version:
A simple and responsive configurable 2D/3D carousel React component
11 lines (10 loc) • 339 B
TypeScript
import * as React from "react";
declare type DotsNavigationProps = {
items: React.ReactNode;
selectedIndex: number;
jumpToIndex: (index: number) => void;
dotNavigationOutlineColor?: string;
dotNavigationFillColor?: string;
};
export declare const DotsNavigation: (props: DotsNavigationProps) => JSX.Element;
export {};