monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
11 lines (10 loc) • 355 B
TypeScript
import React from "react";
import { IndicatorColor } from "./IndicatorConstants";
import { VibeComponentProps } from "../../../types";
export interface IndicatorProps extends VibeComponentProps {
color?: IndicatorColor;
}
declare const Indicator: React.FC<IndicatorProps> & {
colors?: typeof IndicatorColor;
};
export default Indicator;