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