UNPKG

@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) 660 B
// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { spaceAfter } from "../../common/getSpacingToken/index.js.flow"; import type { Props as BadgeListProps } from "../../BadgeList/index.js.flow"; import type { Props as ItineraryBadgeListItemProps } from "./ItineraryBadgeListItem.js.flow"; export type Props = {| +children: React.Node, ...BadgeListProps, ...spaceAfter, |}; declare export var StyledWrapper: StyledComponent<any, any, HTMLElement>; declare export var ItineraryBadgeListItem: React.ComponentType<ItineraryBadgeListItemProps>; declare export default React.ComponentType<Props>;