@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.
17 lines (13 loc) • 435 B
Flow
// @flow
import type { ThemeProps } from "../../defaultTheme";
import type { Type } from "../index";
type TokenName =
| "backgroundButton"
| "backgroundButtonHover"
| "backgroundButtonActive"
| "backgroundButtonFocus"
| "colorTextButton"
| "colorTextButtonHover"
| "colorTextButtonActive";
export type GetTypeToken = (name: TokenName) => ({ ...ThemeProps, type: Type }) => string;
declare export default GetTypeToken;