import cx from "classnames"; import { noop as NOOP, camelCase } from "lodash-es"; import { StepsColor, StepsDotAriaCurrent } from "./StepsConstants"; import VibeComponentProps from "../../types/VibeComponentProps"; import React, { FC } from "react"; import styles from "./StepsDot.module.scss"; import { getStyle } from "../../helpers/typesciptCssModulesHelper"; export interface StepsDotProps extends VibeComponentProps { onClick?: (e: React.MouseEvent) => void; ariaCurrent?: StepsDotAriaCurrent | boolean; isActive?: boolean; ariaLabel?: string; color?: StepsColor; } export const StepsDot: FC = ({ isActive, onClick = NOOP, ariaCurrent = StepsDotAriaCurrent.STEP, ariaLabel, color, className }) => { return (