@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.
19 lines (14 loc) • 367 B
Flow
// @flow
import * as React from "react";
import type { Value } from "../..";
import type { Translation } from "../../../common/common.js.flow";
export type Data = number[];
export type Props = {|
data: ?Data,
value: Value,
min: number,
step: number,
loading?: boolean,
loadingText?: Translation,
|};
declare export default React.ComponentType<Props>;