@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.
18 lines (14 loc) • 381 B
Flow
// @flow
import type { spaceAfter } from "../common/getSpacingToken/index";
import type { Globals } from "../common/common.js.flow";
export type Props = {|
+children?: React$Node,
+closable?: boolean,
+onClose?: () => void,
...Globals,
...spaceAfter,
|};
export type State = {|
expandedSections: Array<number>,
|};
declare export default React$ComponentType<Props>;