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.

22 lines (17 loc) 442 B
// @flow import * as React from "react"; import type { ButtonCommonProps } from "../../primitives/ButtonPrimitive"; export type Type = | "info" | "success" | "warning" | "critical" | "infoSubtle" | "successSubtle" | "warningSubtle" | "criticalSubtle"; export type Props = {| +type?: Type, ...$Diff<ButtonCommonProps, {| +size?: string |}>, |}; declare export default React.AbstractComponent<Props, HTMLButtonElement>;