UNPKG

@chatui/core

Version:

The React library for Chatbot UI

6 lines 204 B
export default function countLines(el) { var styles = window.getComputedStyle(el, null); var lh = parseInt(styles.lineHeight, 10); var h = parseInt(styles.height, 10); return Math.round(h / lh); }