@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.
36 lines (34 loc) • 1.26 kB
JavaScript
import { TOKENS, TYPES } from "../consts";
const getTypeToken = name => ({
theme,
type
}) => {
const tokens = {
[]: {
[]: theme.orbit.backgroundButtonLinkPrimary,
[]: theme.orbit.backgroundButtonLinkSecondary
},
[]: {
[]: theme.orbit.backgroundButtonLinkPrimaryHover,
[]: theme.orbit.backgroundButtonLinkSecondaryHover
},
[]: {
[]: theme.orbit.backgroundButtonLinkPrimaryHover,
[]: theme.orbit.backgroundButtonLinkSecondaryHover
},
[]: {
[]: theme.orbit.colorTextButtonLinkPrimary,
[]: theme.orbit.colorTextButtonLinkSecondary
},
[]: {
[]: theme.orbit.colorTextButtonLinkPrimaryHover,
[]: theme.orbit.colorTextButtonLinkSecondaryHover
},
[]: {
[]: theme.orbit.colorTextButtonLinkPrimaryActive,
[]: theme.orbit.colorTextButtonLinkSecondaryActive
}
};
return tokens[name][type];
};
export default getTypeToken;