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.

10 lines (8 loc) 223 B
import { cloneElement } from "react"; const cloneWithTooltip = (tooltip, children) => { if (!tooltip) return children; return /*#__PURE__*/cloneElement(tooltip, { children }); }; export default cloneWithTooltip;