📅  最后修改于: 2022-03-11 14:48:25.311000             🧑  作者: Mango
import { styled, withTheme } from "@material-ui/core/styles"
import Button from "@material-ui/core/Button"
export const StyledButton= styled(withTheme(Button))(props => ({
background: props.theme.palette.background.paper,
}))