Files
EMS-ESP32/interface/src/components/FormActions.tsx
2020-07-05 18:29:08 +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;