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.

25 lines (21 loc) 695 B
// @flow import type { Type } from "../index"; import type { ThemeProps } from "../../defaultTheme"; type TokenName = | "backgroundButton" | "backgroundButtonHover" | "backgroundButtonActive" | "backgroundButtonBordered" | "backgroundButtonBorderedHover" | "backgroundButtonBorderedActive" | "colorTextButton" | "colorTextButtonBordered" | "colorTextButtonHover" | "colorTextButtonBorderedHover" | "colorTextButtonActive" | "colorTextButtonBorderedActive" | "borderColorButton" | "borderColorButtonHover" | "borderColorButtonActive"; export type GetTypeToken = (name: TokenName) => ({ ...ThemeProps, type: Type }) => string; declare export default GetTypeToken;