@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.
12 lines (10 loc) • 374 B
JavaScript
import { TOKENS } from "../consts";
import getAlertButtonTypeToken from "./getAlertButtonTypeToken";
var getAlertButtonIconForeground = function getAlertButtonIconForeground(_ref) {
var theme = _ref.theme,
type = _ref.type;
return {
foreground: getAlertButtonTypeToken(TOKENS.colorTextButton, type, theme)
};
};
export default getAlertButtonIconForeground;