@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.
19 lines (15 loc) • 484 B
Flow
// @flow
import type { Theme } from "../../defaultTheme";
import type { Type } from "..";
type TokenName =
| "backgroundButton"
| "backgroundButtonHover"
| "backgroundButtonActive"
| "backgroundButtonFocus"
| "colorTextButton"
| "colorTextButtonHover"
| "colorTextButtonActive"
| "iconColor"
| "borderColorButtonFocus";
export type GetSocialButtonTypeToken = (name: TokenName, type: Type, theme: Theme) => string;
declare export default GetSocialButtonTypeToken;