18 lines
378 B
JavaScript
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;
|