import React from 'react'; import styles from './Dots.module.css'; export type DotsProps = { /** * className for the element */ className?: string; /** * Index of the active dot */ activeDotIndex: number; /** * Number of dot to display */ length: number; }; export const Dots = ({ activeDotIndex, length }: DotsProps) => { return (