UNPKG

@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.

25 lines (21 loc) 531 B
// @flow import * as React from "react"; import type { TileOnClick } from "../../index.js.flow"; export type Props = {| icon?: React.Node, title?: React.Node, description?: React.Node, expandable?: boolean, expanded?: boolean, external?: boolean, onClick?: TileOnClick, onKeyDown?: TileOnClick, header?: React.Node, role?: string, ariaExpanded?: boolean, ariaControls?: string, id?: string, tabIndex?: string | number, noHeaderIcon?: boolean, |}; declare export default React.ComponentType<Props>;