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.

23 lines (17 loc) 669 B
// @flow // Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../../../common/common"; declare module "@kiwicom/orbit-components/lib/deprecated/TileHeader"; interface Props { readonly icon?: React.ReactNode; readonly title?: React.ReactNode; readonly description?: React.ReactNode; readonly external?: boolean; readonly onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement>>; readonly isExpandable?: boolean; readonly isExpanded?: boolean; } declare const TileHeader: React.FunctionComponent<Props>; export { TileHeader, TileHeader as default };