@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.
24 lines (21 loc) • 466 B
Flow
// @flow
import type { Globals } from "../common/common.js.flow";
export type Props = {|
+color?:
| "attention"
| "primary"
| "secondary"
| "tertiary"
| "info"
| "success"
| "warning"
| "critical",
+size?: "small" | "medium" | "large",
+customColor?: string,
+className?: string,
+ariaHidden?: boolean,
+reverseOnRtl?: boolean,
+ariaLabel?: string,
...Globals,
|};
declare export default React$ComponentType<Props>;