@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.
12 lines (11 loc) • 532 B
TypeScript
import * as React from "react";
import type * as Common from "../../common/types";
import ItineraryBadgeListItem from "./ItineraryBadgeListItem";
import type { Props } from "./types";
export declare const StyledWrapper: import("styled-components").StyledComponent<"div", any, {
offset: number;
spaceAfter?: Common.SpaceAfterSizes | undefined;
}, never>;
declare const ItineraryBadgeList: ({ children, spaceAfter, ...props }: Props) => React.JSX.Element;
export default ItineraryBadgeList;
export { ItineraryBadgeListItem };