@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.
14 lines • 506 B
TypeScript
import * as React from "react";
import type { Type } from "../types";
import type { Theme } from "../../../defaultTheme";
export declare const getStatusColor: (theme: Theme, type?: Type) => string;
interface Props {
desktop?: boolean;
last?: boolean;
nextStatus?: Type;
prevStatus?: Type;
status?: Type;
}
declare const ProgressLine: ({ desktop, status, nextStatus, last, prevStatus }: Props) => React.JSX.Element;
export default ProgressLine;
//# sourceMappingURL=ProgressLine.d.ts.map