tooltip.tsx 141 B

123
  1. export function isOverflown(el: Element): boolean {
  2. return el.scrollWidth > el.clientWidth || Array.from(el.children).some(isOverflown);
  3. }