refactor(ui/forms): add Actions title

feat/EE-5573/related-changes
Chaim Lev-Ari 2023-10-31 15:34:26 +02:00
parent e3c2fd1699
commit ee2a95f664
1 changed files with 20 additions and 15 deletions

View File

@ -1,13 +1,16 @@
import { PropsWithChildren } from 'react';
import { AutomationTestingProps } from '@/types';
import { LoadingButton } from '@@/buttons';
interface Props {
import { FormSection } from './FormSection';
interface Props extends AutomationTestingProps {
submitLabel: string;
loadingText: string;
isLoading: boolean;
isValid: boolean;
'data-cy'?: string;
}
export function FormActions({
@ -19,6 +22,7 @@ export function FormActions({
'data-cy': dataCy,
}: PropsWithChildren<Props>) {
return (
<FormSection title="Actions">
<div className="form-group">
<div className="col-sm-12">
<LoadingButton
@ -34,5 +38,6 @@ export function FormActions({
{children}
</div>
</div>
</FormSection>
);
}