UNPKG

@grafana/ui

Version:
9 lines (8 loc) 250 B
import { FC, CSSProperties } from 'react'; import { FormattedValue } from '@grafana/data'; export interface Props { className?: string; value: FormattedValue; style: CSSProperties; } export declare const FormattedValueDisplay: FC<Props>;