Files
EMS-ESP32/interface/src/components/FormButton.tsx
2020-07-05 18:29:08 +02:00

14 lines
258 B
TypeScript

import { Button, styled } from "@material-ui/core";
const FormButton = styled(Button)(({ theme }) => ({
margin: theme.spacing(0, 1),
'&:last-child': {
marginRight: 0,
},
'&:first-child': {
marginLeft: 0,
}
}));
export default FormButton;