@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.
22 lines (20 loc) • 578 B
JavaScript
import { SIZES, TOKENS } from "../consts";
const getSizeToken = name => ({
theme,
size
}) => {
const tokens = {
[]: {
[]: theme.orbit.heightButtonLarge,
[]: theme.orbit.heightButtonNormal,
[]: theme.orbit.heightButtonSmall
},
[]: {
[]: theme.orbit.fontSizeButtonLarge,
[]: theme.orbit.fontSizeButtonNormal,
[]: theme.orbit.fontSizeButtonSmall
}
};
return tokens[name][size];
};
export default getSizeToken;