@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.
15 lines (10 loc) • 291 B
Flow
// @flow
import type { CSSRules } from "styled-components";
import type { Align, Dimensions, Position } from "..";
export type Props = {|
...Dimensions,
...Align,
...Position,
|};
type ResolveContainerAlign = Props => CSSRules | null;
declare export default ResolveContainerAlign;