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.

17 lines (13 loc) 483 B
// @flow import * as React from "react"; import type { spaceAfter } from "../../common/getSpacingToken/index.js.flow"; import type { Globals } from "../../common/common.js.flow"; import type { Props as CommonBadgeListItemProps } from "../../BadgeList/BadgeListItem/index.js.flow"; export type Props = {| cancelledValue?: React.Node, withBackground?: boolean, ...CommonBadgeListItemProps, ...Globals, ...spaceAfter, |}; declare export default React.ComponentType<Props>;