mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
import React from 'react';
|
|
import classnames from 'classnames';
|
|
import { Navbar } from '@blueprintjs/core';
|
|
|
|
export default function DashboardActionsBar({ children, name }) {
|
|
return (
|
|
<div
|
|
className={classnames({
|
|
'dashboard__actions-bar': true,
|
|
[`dashboard__actions-bar--${name}`]: !!name
|
|
})}
|
|
>
|
|
<Navbar className='navbar--dashboard-actions-bar'>{children}</Navbar>
|
|
</div>
|
|
);
|
|
}
|