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.

22 lines (20 loc) 578 B
import { SIZES, TOKENS } from "../consts"; const getSizeToken = name => ({ theme, size }) => { const tokens = { [TOKENS.heightButton]: { [SIZES.LARGE]: theme.orbit.heightButtonLarge, [SIZES.NORMAL]: theme.orbit.heightButtonNormal, [SIZES.SMALL]: theme.orbit.heightButtonSmall }, [TOKENS.fontSizeButton]: { [SIZES.LARGE]: theme.orbit.fontSizeButtonLarge, [SIZES.NORMAL]: theme.orbit.fontSizeButtonNormal, [SIZES.SMALL]: theme.orbit.fontSizeButtonSmall } }; return tokens[name][size]; }; export default getSizeToken;