mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 03:40:31 +00:00
feat: optimize style of credit note details. feat: optimize global style checkbox of the application.
17 lines
463 B
JavaScript
17 lines
463 B
JavaScript
import React from 'react';
|
|
import { Classes } from '@blueprintjs/core';
|
|
import LoadingIndicator from 'components/LoadingIndicator';
|
|
|
|
export function DrawerLoading({ loading, mount = false, children }) {
|
|
return (
|
|
<LoadingIndicator loading={loading} mount={mount}>
|
|
{children}
|
|
</LoadingIndicator>
|
|
);
|
|
}
|
|
|
|
export function DrawerBody({ children }) {
|
|
return <div className={Classes.DRAWER_BODY}>{children}</div>;
|
|
}
|
|
|
|
export * from './DrawerActionsBar'; |