@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.
16 lines (12 loc) • 445 B
Flow
// @flow
import * as React from "react";
import type { StyledComponent } from "styled-components";
import type { spaceAfter } from "../../common/getSpacingToken";
import type { Props as BadgeListProps } from "../../BadgeList";
export type Props = {|
+children: React.Node,
...BadgeListProps,
...spaceAfter,
|};
declare export var StyledWrapper: StyledComponent<any, any, HTMLElement>;
declare export default React.ComponentType<Props>;