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 (13 loc) 426 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/badgelist/ */ import * as React from "react"; import type { Globals } from "../common/common.js.flow"; import type { Props as BadgeListItemProps } from "./BadgeListItem"; export type Props = {| +children: React.Node, ...Globals, |}; declare export var BadgeListItem: React.ComponentType<BadgeListItemProps>; declare export default React.ComponentType<Props>;