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.

12 lines (8 loc) 309 B
import * as React from "react"; import * as Common from "../common/common"; export interface Props extends Common.Global { readonly title: string; readonly onClick?: Common.Event<React.SyntheticEvent<HTMLElement>>; } declare const WizardStep: React.FunctionComponent<Props>; export default WizardStep;