import React from "react"; import cx from "classnames"; import styles from "./Indicator.module.scss"; import { IndicatorColor } from "./IndicatorConstants"; import { ComponentDefaultTestId } from "../../../tests/constants"; import { VibeComponentProps } from "../../../types"; import { getTestId } from "../../../tests/test-ids-utils"; export interface IndicatorProps extends VibeComponentProps { color?: IndicatorColor; } const Indicator: React.FC & { colors?: typeof IndicatorColor } = ({ color = IndicatorColor.NOTIFICATION, className, id, "data-testid": dataTestId }: IndicatorProps) => { return (
); }; Indicator.colors = IndicatorColor; export default Indicator;