@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.
19 lines (17 loc) • 554 B
JavaScript
import SPACINGS_AFTER from "./consts";
const getSpacingToken = ({
spaceAfter,
theme
}) => {
const tokens = {
[]: "0",
[]: theme.orbit.spaceXXSmall,
[]: theme.orbit.spaceXSmall,
[]: theme.orbit.spaceSmall,
[]: theme.orbit.spaceMedium,
[]: theme.orbit.spaceLarge,
[]: theme.orbit.spaceXLarge
};
return spaceAfter && tokens[spaceAfter];
};
export default getSpacingToken;