mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
fix: allocate landed cost on inventory items.
This commit is contained in:
15
src/components/Dialog/DialogFooter.js
Normal file
15
src/components/Dialog/DialogFooter.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
import { Classes } from '@blueprintjs/core';
|
||||
|
||||
export function DialogFooter({ children }) {
|
||||
return (
|
||||
<DialogFooterRoot className={Classes.DIALOG_FOOTER}>
|
||||
{children}
|
||||
</DialogFooterRoot>
|
||||
);
|
||||
}
|
||||
|
||||
const DialogFooterRoot = styled.div`
|
||||
display: flex;
|
||||
`;
|
||||
Reference in New Issue
Block a user