UNPKG

ze-react-component-library

Version:
16 lines (15 loc) 540 B
import React from "react"; import { PropertyType, LogicformType } from "zeroetp-api-sdk"; declare const StatisticForValue: ({ property, value: _value, tip: _tip, logicform, trend: _trend, upColor, downColor, title, subTitle, showArrow, }: { title?: string; subTitle?: React.ReactNode; property: PropertyType; value: number; tip?: string; upColor?: string; downColor?: string; trend?: "up" | "down"; showArrow?: boolean; logicform?: LogicformType; }) => JSX.Element; export default StatisticForValue;