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.

16 lines (11 loc) 368 B
// @flow import type { CSSRules } from "styled-components"; import type { Position, DimensionsCore, Offset } from "../index.js.flow"; export type StyledPosition = {| ...Position, ...DimensionsCore, +offset: Offset, +fixed?: boolean, |}; export type ResolvePopoverPosition = StyledPosition => CSSRules | null; declare export default ResolvePopoverPosition;