@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.
11 lines (10 loc) • 428 B
TypeScript
import * as React from "react";
import type { Props, Size, Carrier } from "./types";
type WrapperProps = {
carriers: Carrier[];
size: Size;
inlineStacked?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
export declare const CarrierLogoWrapper: React.FC<WrapperProps>;
declare const CarrierLogo: ({ size, carriers, dataTest, id, rounded, inlineStacked, }: Props) => React.JSX.Element;
export default CarrierLogo;