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.

18 lines (13 loc) 402 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/buttonlink/ */ import * as React from "react"; import type { ButtonCommonProps } from "../primitives/ButtonPrimitive"; export type Type = "primary" | "secondary" | "critical"; export type Props = {| +compact?: boolean, +type?: Type, ...ButtonCommonProps, |}; declare export default React.AbstractComponent<Props, HTMLButtonElement>;