Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / sections / ToolbarRow / ToolbarRow.tsx
blobe273f41fbba865fb7263236efaeb8a6c511afdf4
1 import type { ReactNode } from 'react';
3 import './ToolbarRow.scss';
5 interface Props {
6     titleArea: ReactNode;
7     toolbar: ReactNode;
10 const ToolbarRow = ({ titleArea, toolbar }: Props) => {
11     return (
12         <div className="toolbar-row flex flex-nowrap w-full border-bottom border-weak shrink-0">
13             <div className="toolbar-row-toolbar shrink-0">{toolbar}</div>
14             <div className="toolbar-row-titleArea flex items-center pl-3 pr-1">{titleArea}</div>
15         </div>
16     );
19 export default ToolbarRow;