@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.
22 lines (19 loc) • 567 B
JavaScript
import { TOKENS } from "../consts";
import getButtonTypeToken from "./getButtonTypeToken";
const getButtonIconForeground = ({
theme,
type
}) => {
const wrappedTypeToken = name => getButtonTypeToken({
name,
type,
theme
});
return {
foreground: wrappedTypeToken(TOKENS.colorTextButton),
foregroundHover: wrappedTypeToken(TOKENS.colorTextButtonHover),
foregroundActive: wrappedTypeToken(TOKENS.colorTextButtonActive),
foregroundFocus: wrappedTypeToken(TOKENS.colorTextButtonActive)
};
};
export default getButtonIconForeground;