@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) • 613 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/card/
*/
import type { spaceAfter } from "../common/getSpacingToken";
import type { Globals } from "../common/common.js.flow";
import typeof CardSectionType from "./CardSection/index.js.flow";
export type Props = {|
+children?: React$Node,
+title?: React$Node,
+description?: React$Node,
+icon?: React$Node,
+actions?: React$Node,
+loading?: boolean,
+header?: React$Node,
+dataA11ySection?: string,
...Globals,
...spaceAfter,
|};
declare export default React$ComponentType<Props>;
declare export var CardSection: CardSectionType;