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 (13 loc) 395 B
// @flow import type { CSSRules } from "styled-components"; import type { Theme } from "../../../defaultTheme"; import type { Align, Dimensions, Position } from ".."; export type Props = {| +customContainerOffset?: number, +theme: Theme, ...Dimensions, ...Align, ...Position, |}; type ResolveContainerAlign = Props => CSSRules | null; declare export default ResolveContainerAlign;