@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.
32 lines (30 loc) • 1.04 kB
JavaScript
import { SIZE_OPTIONS, TOKENS } from "../consts";
const getSizeToken = name => ({
theme,
size
}) => {
const tokens = {
[]: {
[]: theme.orbit.heightButtonLarge,
[]: theme.orbit.heightButtonNormal,
[]: theme.orbit.heightButtonSmall
},
[]: {
[]: theme.orbit.widthIconMedium,
[]: theme.orbit.widthIconMedium,
[]: theme.orbit.widthIconSmall
},
[]: {
[]: theme.orbit.heightIconMedium,
[]: theme.orbit.heightIconMedium,
[]: theme.orbit.heightIconSmall
},
[]: {
[]: theme.orbit.fontSizeButtonLarge,
[]: theme.orbit.fontSizeButtonNormal,
[]: theme.orbit.fontSizeButtonSmall
}
};
return tokens[name][size];
};
export default getSizeToken;