UNPKG

@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) 411 B
import * as React from "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) => React.JSX.Element; export default Histogram;