@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 getSocialButtonTypeToken from "./getSocialButtonTypeToken";
var getSocialButtonIconForeground = function getSocialButtonIconForeground(_ref) {
var theme = _ref.theme,
type = _ref.type;
return {
foreground: getSocialButtonTypeToken(TOKENS.iconColor, type, theme)
};
};
export default getSocialButtonIconForeground;