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

9 lines
200 B
JavaScript
Raw Normal View History

2024-04-06 19:09:12 +02:00
import {Box, styled} from "@mui/material";
const ButtonBar = styled(Box)((props) => ({
"& > button, & > label": {
marginRight: props.theme.spacing(1)
}
}));
export default ButtonBar;