@wandelbots/wandelbots-js-react-components
Version:
React UI toolkit for building applications on top of the Wandelbots platform
18 lines • 755 B
TypeScript
import { type PopoverOrigin, type TypographyProps } from "@mui/material";
import type { ElementType, ReactNode } from "react";
export type IndicatorWithExplanationProps = {
id: string;
icon: ElementType;
color: TypographyProps["color"];
title?: ReactNode;
name: ReactNode;
label?: ReactNode;
explanation: ReactNode;
literalValue?: string;
anchorOrigin?: PopoverOrigin;
transformOrigin?: PopoverOrigin;
};
export declare const IndicatorWithExplanation: (({ id, icon, color, title, name, label, explanation, literalValue, anchorOrigin, transformOrigin, }: IndicatorWithExplanationProps) => import("react/jsx-runtime").JSX.Element) & {
displayName: string;
};
//# sourceMappingURL=IndicatorWithExplanation.d.ts.map