monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
12 lines (11 loc) • 457 B
TypeScript
import { StepsColor, StepsDotAriaCurrent } from "./StepsConstants";
import VibeComponentProps from "../../types/VibeComponentProps";
import React, { FC } from "react";
export interface StepsDotProps extends VibeComponentProps {
onClick?: (e: React.MouseEvent) => void;
ariaCurrent?: StepsDotAriaCurrent | boolean;
isActive?: boolean;
ariaLabel?: string;
color?: StepsColor;
}
export declare const StepsDot: FC<StepsDotProps>;