@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
14 lines (13 loc) • 405 B
TypeScript
/// <reference types="react" />
import type { Value } from "../../types";
import type { Translation } from "../../../common/types";
interface Props {
data?: number[];
value: Value;
min: number;
step: number;
loading?: boolean;
loadingText?: Translation;
}
declare const Histogram: ({ data, value, min, loading, loadingText, step }: Props) => JSX.Element;
export default Histogram;