@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.
10 lines (9 loc) • 360 B
TypeScript
import * as React from "react";
import type { Props as StepProps, Type } from "../types";
interface Props extends StepProps {
last: boolean;
prevType: Type;
nextType: Type;
}
declare const TimelineStepDesktop: ({ type, nextType, prevType, last, children, active, label, subLabel, }: Props) => React.JSX.Element;
export default TimelineStepDesktop;