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.

21 lines (14 loc) 624 B
// @flow // Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../common/common"; import { ButtonCommonProps } from "../primitives/ButtonPrimitive/index"; declare module "@kiwicom/orbit-components/lib/ButtonLink"; type Type = "primary" | "secondary" | "critical"; export interface Props extends Common.Global, Common.Ref, Common.SpaceAfter, ButtonCommonProps { readonly compact?: boolean; readonly type?: Type; } declare const ButtonLink: React.FunctionComponent<Props>; export { ButtonLink, ButtonLink as default };