@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.
22 lines (18 loc) • 493 B
Flow
// @flow
import * as React from "react";
import type { TileOnClick } from "../../index.js.flow";
import type { Globals } from "../../../common/common.js.flow";
export type Props = {|
...Globals,
initialExpanded: boolean,
noPadding: boolean,
children?: React.Node,
onClick?: TileOnClick,
expanded?: boolean,
title?: React.Node,
description?: React.Node,
header?: React.Node,
icon?: React.Node,
htmlTitle?: string,
|};
declare export default React.ComponentType<Props>;