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.

13 lines (10 loc) 462 B
var tooltipPadding = function tooltipPadding(_ref) { var contentHeight = _ref.contentHeight, theme = _ref.theme; // one-line text should have smaller top/bottom padding if (contentHeight <= Math.floor(parseFloat(theme.orbit.lineHeightTextNormal))) { return "".concat(theme.orbit.spaceXSmall, " ").concat(theme.orbit.spaceSmall); // TODO: create token } return theme.orbit.spaceSmall; // TODO: create token }; export default tooltipPadding;