@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.
20 lines (16 loc) • 432 B
Flow
// @flow
import * as React from "react";
import type { Globals } from "../../common/common.js.flow";
export type Props = {|
enabled?: boolean,
tabIndex?: string | number,
children?: React.Node,
lockScrolling?: boolean,
renderInPortal?: boolean,
content: React.Node,
stopPropagation?: boolean,
removeUnderlinedText?: boolean,
block?: boolean,
...Globals,
|};
declare export default React.ComponentType<Props>;