9 lines
200 B
JavaScript
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;
|