mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
15 lines
296 B
JavaScript
15 lines
296 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
export default function FinancialStatementHeader({ show, children }) {
|
|
return (
|
|
<div
|
|
className={classNames('financial-statement__header', {
|
|
'is-hidden': !show,
|
|
})}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|