@mui/x-charts
Version:
The community edition of the charts components (MUI X).
14 lines • 342 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { getStringSize } from './domUtils';
export function getWordsByLines({
style,
needsComputation,
text
}) {
return text.split('\n').map(subText => _extends({
text: subText
}, needsComputation ? getStringSize(subText, style) : {
width: 0,
height: 0
}));
}