@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.
21 lines (17 loc) • 619 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/stopoverarrow/
*/
import * as React from "react";
import type { Globals } from "../common/common.js.flow";
export type Props = {|
+onChange: (ev: SyntheticInputEvent<HTMLInputElement>) => void | Promise<any>,
+onFocus?: (ev: SyntheticInputEvent<HTMLInputElement>) => void | Promise<any>,
+onBlur?: (ev: SyntheticInputEvent<HTMLInputElement>) => void | Promise<any>,
+disabled?: boolean,
+ariaLabelledby?: string,
+checked: boolean,
+icon?: React.Node,
...Globals,
|};
declare export default React.AbstractComponent<Props, HTMLInputElement>;