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