openreplay/frontend/app/components/shared/DevTools/BottomBlock/BottomBlock.js
2022-10-11 10:36:20 +02:00

18 lines
378 B
JavaScript

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