@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.
14 lines (10 loc) • 313 B
Flow
// @flow
import * as React from "react";
import type { spaceAfter } from "../../common/getSpacingToken";
import type { Props as BadgeListProps } from "../../BadgeList";
export type Props = {|
+children: React.Node,
...BadgeListProps,
...spaceAfter,
|};
declare export default React.ComponentType<Props>;