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.

18 lines (14 loc) 469 B
// @flow import type { Type } from "../index"; import type { Theme } from "../../defaultTheme"; export type TokenName = | "backgroundButton" | "backgroundButtonHover" | "backgroundButtonActive" | "backgroundButtonFocus" | "colorTextButton" | "colorTextButtonHover" | "colorTextButtonActive" | "borderColorButtonFocus"; export type GetButtonTypeToken = (name: TokenName, type: Type, theme: Theme) => string; declare export default GetButtonTypeToken;