@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 (14 loc) • 436 B
Flow
// @flow
import type { Translation, Globals } from "../common/common.js.flow";
import Illustration from "../Illustration/index";
export type Props = {|
tabIndex?: string,
onClick?: () => void | Promise<any>,
title: Translation,
description?: Translation,
illustration?: React$Element<typeof Illustration>,
actions?: React$Node,
children?: React$Node,
...Globals,
|};
declare export default React$ComponentType<Props>;