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.

18 lines (14 loc) 295 B
// @flow import * as React from "react"; 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>;