@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.
17 lines (13 loc) • 340 B
Flow
// @flow
import type { Value } from "../../index";
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>;