@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) • 370 B
Flow
// @flow
import type { Interpolation } from "styled-components";
import type { Dimensions, Position } from "../index";
import type { ThemeProps } from "../../../defaultTheme";
export type Props = {|
...Dimensions,
...Position,
...ThemeProps,
|};
type ResolveContainerPosition = Props => Interpolation[] | null;
declare export default ResolveContainerPosition;