UNPKG

@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
import SPACINGS_AFTER from "./consts"; const getSpacingToken = ({ spaceAfter, theme }) => { const tokens = { [SPACINGS_AFTER.NONE]: "0", [SPACINGS_AFTER.SMALLEST]: theme.orbit.spaceXXSmall, [SPACINGS_AFTER.SMALL]: theme.orbit.spaceXSmall, [SPACINGS_AFTER.NORMAL]: theme.orbit.spaceSmall, [SPACINGS_AFTER.MEDIUM]: theme.orbit.spaceMedium, [SPACINGS_AFTER.LARGE]: theme.orbit.spaceLarge, [SPACINGS_AFTER.LARGEST]: theme.orbit.spaceXLarge }; return spaceAfter && tokens[spaceAfter]; }; export default getSpacingToken;