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.

16 lines (14 loc) 496 B
import { SPACINGS } from "../../utils/layout/consts"; const getSpacing = ({ theme }) => ({ [SPACINGS.XXXSMALL]: theme.orbit.spaceXXXSmall, [SPACINGS.XXSMALL]: theme.orbit.spaceXXSmall, [SPACINGS.XSMALL]: theme.orbit.spaceXSmall, [SPACINGS.SMALL]: theme.orbit.spaceSmall, [SPACINGS.MEDIUM]: theme.orbit.spaceMedium, [SPACINGS.LARGE]: theme.orbit.spaceLarge, [SPACINGS.XLARGE]: theme.orbit.spaceXLarge, [SPACINGS.XXLARGE]: theme.orbit.spaceXXLarge }); export default getSpacing;