@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.
23 lines (17 loc) • 649 B
TypeScript
// @noflow
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import * as React from "react";
import * as Common from "../common/common";
type Type = "appStore" | "googlePlay";
type Variant = "light" | "dark";
export interface Props extends Common.Global {
readonly type?: Type;
readonly variant?: Variant;
readonly stopPropagation?: boolean;
readonly href?: string;
readonly alt?: string;
readonly onClick?: Common.Event<React.SyntheticEvent<HTMLLinkElement>>;
}
declare const ButtonMobileStore: React.FunctionComponent<Props>;
export { ButtonMobileStore, ButtonMobileStore as default };