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.

10 lines (9 loc) 354 B
/// <reference types="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) => JSX.Element; export default TimelineStepDesktop;