UNPKG

@react-ui-org/react-ui

Version:

React UI is a themeable UI library for React apps.

12 lines (9 loc) 269 B
export const getRootWordWrappingClassName = (wordWrapping, styles) => { if (wordWrapping === 'anywhere') { return styles.isRootWordWrappingAnywhere; } if (wordWrapping === 'long-words') { return styles.isRootWordWrappingLongWords; } return null; };