UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

10 lines 190 B
export function invertTextAnchor(textAnchor) { switch (textAnchor) { case 'start': return 'end'; case 'end': return 'start'; default: return textAnchor; } }