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

components.pages.TopLeftRightPage.FixedContainer.jsx Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'

function FixedContainer({ className, fixed, width, style, children }) {
    return (
        
{children}
) } FixedContainer.propTypes = { className: PropTypes.string, fixed: PropTypes.string, width: PropTypes.object, style: PropTypes.object, children: PropTypes.oneOfType([ PropTypes.func, PropTypes.node, PropTypes.element, ]), } FixedContainer.defaultProps = { width: 'auto', style: {}, } export default FixedContainer




© 2015 - 2025 Weber Informatics LLC | Privacy Policy