openreplay/frontend/app/components/Session_/BottomBlock/BottomBlock.js
2021-05-01 15:12:01 +05:30

17 lines
328 B
JavaScript

import cn from 'classnames';
import stl from './bottomBlock.css';
const BottomBlock = ({
children,
className,
additionalHeight,
...props
}) => (
<div className={ cn(stl.wrapper, "flex flex-col mb-2") } { ...props } >
{ children }
</div>
);
BottomBlock.displayName = 'BottomBlock';
export default BottomBlock;