@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) • 472 B
Flow
// @flow
import * as React from "react";
import type { Translation, Globals } from "../common/common.js.flow";
import Illustration from "../Illustration";
export type Props = {|
tabIndex?: string | number,
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>;