openreplay/frontend/app/components/Session_/BottomBlock/BottomBlock.tsx
Андрей Бабушкин 2b1a9f3378 add locales and lint the project
2025-03-05 16:09:18 +01:00

26 lines
498 B
TypeScript

import React from 'react';
import cn from 'classnames';
import stl from './bottomBlock.module.css';
interface Props {
children?: React.ReactNode;
className?: string;
additionalHeight?: number;
}
function BottomBlock({
children = null,
className = '',
additionalHeight = 0,
...props
}: Props) {
return (
<div className={cn(stl.wrapper, 'flex flex-col mb-2')} {...props}>
{children}
</div>
);
}
BottomBlock.displayName = 'BottomBlock';
export default BottomBlock;