UNPKG

@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.

17 lines (13 loc) 263 B
// @flow export type Props = {| +offset?: number, +children: React$Node, |}; export type State = {| sticky: boolean, height: number, width: number, initialTop: number, initialWidth: boolean, |}; declare export default React$ComponentType<Props>;