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.

13 lines (9 loc) 389 B
import React from "react"; import Common from "../../common/common"; import { Props as BadgeListProps } from "../../BadgeList"; export interface Props extends BadgeListProps, Common.SpaceAfter { /** Content of the BadgeList (BadgeListItem) */ readonly children: React.ReactNode; } declare const ItineraryBadgeList: React.FunctionComponent<Props>; export default ItineraryBadgeList;