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.

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