mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
Merge branch 'develop'
This commit is contained in:
@@ -2,6 +2,10 @@ import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
import { Classes } from '@blueprintjs/core';
|
||||
|
||||
/**
|
||||
* Dialog footer actions.
|
||||
* @returns {React.JSX}
|
||||
*/
|
||||
export function DialogFooterActions({ alignment = 'right', children }) {
|
||||
return (
|
||||
<DialogFooterActionsRoot
|
||||
@@ -13,6 +17,19 @@ export function DialogFooterActions({ alignment = 'right', children }) {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dialog footer.
|
||||
* @returns {React.JSX}
|
||||
*/
|
||||
export function DialogFooter({ ...props }) {
|
||||
return <DialogFooterRoot {...props} />;
|
||||
}
|
||||
|
||||
const DialogFooterRoot = styled.div`
|
||||
flex: 0 0 auto;
|
||||
margin: 0 20px;
|
||||
`;
|
||||
|
||||
const DialogFooterActionsRoot = styled.div`
|
||||
${(props) =>
|
||||
props.alignment === 'right' ? 'margin-left: auto;' : 'margin-right: auto;'};
|
||||
|
||||
Reference in New Issue
Block a user