import React, { HTMLProps } from "react";
import { makeStyles } from "@material-ui/core/styles";
export const Actions = (props: HTMLProps) => {
const classes = makeStyles(theme => ({
root: {
"& > *": {
marginRight: theme.spacing(1)
}
}
}))();
return
}