All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.core.templates.utils.jsx Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import classNames from 'classnames'
import isEmpty from 'lodash/isEmpty'

export const layoutContainerClasses = (header, sidebar, fullSizeHeader, fixed, side) => classNames(
    'n2o-layout-container flex-grow-1',
    { 'n2o-layout-with-header': !isEmpty(header),
        'n2o-layout-with-sidebar': !isEmpty(sidebar),
        'n2o-layout-full-size-header d-flex flex-column': fullSizeHeader,
        'n2o-layout-full-size-sidebar d-flex': !fullSizeHeader,
        'n2o-layout-fixed': fixed,
        'flex-row-reverse': !fullSizeHeader && side === 'right' },
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy