@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.
27 lines (22 loc) • 512 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/button/
*/
import * as React from "react";
import type { ButtonCommonProps, Size } from "../primitives/ButtonPrimitive";
export type Type =
| "primary"
| "secondary"
| "critical"
| "primarySubtle"
| "criticalSubtle"
| "white"
| "bundleBasic"
| "bundleMedium"
| "bundleTop";
export type Props = {|
+type?: Type,
+size?: Size,
...ButtonCommonProps,
|};
declare export default React.AbstractComponent<Props, HTMLButtonElement>;