UNPKG

react-responsive-framer-motion-carousel

Version:

React carousel componet

19 lines (16 loc) 428 B
interface CounterProps { /** * - Element 1 (string, optional): Custom prefix string to display before the page numbers. */ counter?: [boolean?, string?]; /** * The current page index (zero-based). */ pageIndex: number; /** * The total number of pages. */ pageCount: number; } declare function Counter(props: CounterProps): JSX.Element; export default Counter;