@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 (11 loc) • 339 B
JavaScript
const tooltipPadding = ({
contentHeight,
theme
}) => {
// one-line text should have smaller top/bottom padding
if (contentHeight <= Math.floor(parseFloat(theme.orbit.lineHeightTextNormal))) {
return `${theme.orbit.spaceXSmall} ${theme.orbit.spaceSmall}`;
}
return theme.orbit.spaceSmall;
};
export default tooltipPadding;