@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.
21 lines (17 loc) • 447 B
Flow
// @flow
import * as React from "react";
import type { As } from "../../../Heading";
export type Props = {|
+description?: React.Node,
+icon?: React.Node,
+actions?: React.Node,
+onClose?: () => void | Promise<any>,
+title?: React.Node,
+titleAs?: As,
+isSection?: boolean,
+dataA11ySection?: string,
+expandable?: boolean,
+expanded?: boolean,
+header?: React.Node,
|};
declare export default React.ComponentType<Props>;