@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 (16 loc) • 425 B
Flow
// @flow
import type { Globals } from "../../common/common.js.flow";
import type { Size, Color } from "..";
type Return = {|
...Globals,
+size?: Size,
+color?: Color,
+className?: string,
+customColor?: string,
+ariaHidden?: boolean,
+reverseOnRtl?: boolean,
+ariaLabel?: string,
|};
type Props = {| ...Return |};
export type WhiteListProps = (props: Props) => any;
declare export default WhiteListProps;