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.

14 lines (10 loc) 328 B
// @flow import defaultTheme from "../../defaultTheme"; export type spaceAfter = {| +spaceAfter?: "none" | "smallest" | "small" | "normal" | "medium" | "large" | "largest", |}; export type Props = {| +theme: typeof defaultTheme, ...spaceAfter, |}; declare export default function getSpacingToken(props: Props): string;