I sometimes like the cleaner button styles and variants bootstrap's buttons and alerts. These components are simple to drop in place without losing any features or properties of Material UIs original components.
A bootstrap alert
A bootstrap alert
A bootstrap alert
A bootstrap alert
A bootstrap alert
A bootstrap alert
A bootstrap alert
A bootstrap alert
Cards
Cards
Cards
Cards
Cards
Cards
Cards
Cards
import { Grid } from "@material-ui/core"
import { Button } from "material-ui-bootstrap"
import { bootstrapColors } from "material-ui-bootstrap/dist/Alert"
import React from "react"
export default function Demo() {
return (
<Button variant="contained" color="success">
Green Button
</Button>
)
}