@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.
30 lines • 1.1 kB
JavaScript
import { SIZE_OPTIONS, TOKENS } from "./consts";
const getSizeToken = (size, theme) => {
const tokens = {
[]: {
[]: theme.orbit.formBoxLargeHeight,
[]: theme.orbit.formBoxNormalHeight,
[]: theme.orbit.formBoxSmallHeight
},
[]: {
[]: theme.orbit.buttonLargeFontSize,
[]: theme.orbit.buttonNormalFontSize,
[]: theme.orbit.buttonSmallFontSize
},
[]: {
[]: theme.orbit.iconMediumSize,
[]: theme.orbit.iconMediumSize,
[]: theme.orbit.iconSmallSize
},
[]: {
[]: theme.orbit.iconMediumSize,
[]: theme.orbit.iconMediumSize,
[]: theme.orbit.iconSmallSize
}
};
return {
height: tokens[TOKENS.heightButton][size],
fontSize: tokens[TOKENS.fontSizeButton][size]
};
};
export default getSizeToken;