8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { styled, Box } from "@material-ui/core";
|
|
|
|
const FormActions = styled(Box)(({ theme }) => ({
|
|
marginTop: theme.spacing(1)
|
|
}));
|
|
|
|
export default FormActions;
|