@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.
27 lines (23 loc) • 752 B
Flow
// @flow
import type { Type } from "../index";
import type { ThemeProps } from "../../defaultTheme";
type TokenName =
| "backgroundButton"
| "backgroundButtonHover"
| "backgroundButtonActive"
| "backgroundButtonBordered"
| "backgroundButtonBorderedHover"
| "backgroundButtonBorderedActive"
| "backgroundButtonFocus"
| "colorTextButton"
| "colorTextButtonBordered"
| "colorTextButtonHover"
| "colorTextButtonBorderedHover"
| "colorTextButtonActive"
| "colorTextButtonBorderedActive"
| "borderColorButton"
| "borderColorButtonHover"
| "borderColorButtonActive"
| "borderColorButtonFocus";
export type GetTypeToken = (name: TokenName) => ({ ...ThemeProps, type: Type }) => string;
declare export default GetTypeToken;