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.

11 lines (6 loc) 320 B
// @flow import type { Size } from "../index"; import type { ThemeProps } from "../../defaultTheme"; type TokenName = "heightButton" | "loadingWidth" | "loadingHeight" | "fontSizeButton"; export type GetSizeToken = (name: TokenName) => ({ ...ThemeProps, size: Size }) => string; declare export default GetSizeToken;