@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.
16 lines (12 loc) • 364 B
Flow
// @flow
import type { Theme } from "../../defaultTheme";
import type { Type } from "..";
type Name =
| "background"
| "backgroundHover"
| "backgroundActive"
| "foreground"
| "foregroundHover"
| "foregroundActive";
export type GetButtonLinkTypeToken = (name: Name, type: Type, theme: Theme) => string;
declare export default GetButtonLinkTypeToken;