import { DialogFooter } from '@blueprintjs/core'; import styled from '@emotion/styled'; import { Button, withForm } from 'react-science/ui'; import { defaultGeneralSettingsFormValues } from './validation.js'; const Footer = styled.div` display: flex; justify-content: flex-end; gap: 10px; `; export const GeneralSettingsDialogFooter = withForm({ props: { onCancel: () => { /* empty */ }, }, defaultValues: defaultGeneralSettingsFormValues, render: ({ form, onCancel }) => { return ( ); }, });