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 (12 loc) 416 B
// @flow import type { CSSRules } from "styled-components"; import type { Anchor, DimensionsCore, Offset } from "../index.js.flow"; import type { Theme } from "../../defaultTheme.js.flow"; export type StyledAnchor = {| ...Anchor, ...DimensionsCore, offset: Offset, theme: Theme, |}; export type ResolvePopoverHorizontal = StyledAnchor => CSSRules | null; declare export default ResolvePopoverHorizontal;