@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 (15 loc) • 348 B
Flow
// @flow
import * as React from "react";
import type { Status } from "../..";
export type Props = {|
+date: string,
+time: React.Node,
+city: React.Node,
+station: React.Node,
+hidden?: boolean,
+type?: Status,
+canceled?: boolean,
+minWidth?: number,
+icon?: React.Node,
|};
declare export default React.ComponentType<Props>;