@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
// @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;