components.pages.TopLeftRightPage.FixedContainer.tsx Maven / Gradle / Ivy
import React, { ReactNode, CSSProperties } from 'react'
import classNames from 'classnames'
export interface Props {
className?: string
fixed: boolean
width?: string | number
style?: CSSProperties
children: ReactNode
}
export function FixedContainer({ children, className, fixed, width = 'auto', style = {} }: Props) {
return (
{children}
)
}
export default FixedContainer
© 2015 - 2025 Weber Informatics LLC | Privacy Policy