Files
EMS-ESP32/interface/src/components/FormActions.tsx
2021-05-14 12:45:57 +02:00

8 lines
164 B
TypeScript

import { styled, Box } from '@material-ui/core';
const FormActions = styled(Box)(({ theme }) => ({
marginTop: theme.spacing(1)
}));
export default FormActions;