web-base/react/admin-panel/src/elements/button-bar.js

9 lines
200 B
JavaScript

import {Box, styled} from "@mui/material";
const ButtonBar = styled(Box)((props) => ({
"& > button, & > label": {
marginRight: props.theme.spacing(1)
}
}));
export default ButtonBar;