How to make mui button background gradient color in react js?

Hi Friends 👋,

Welcome To aGuideHub! ❤️

To make mui button background gradient color in React js, set background: linear-gradient(to right, #ad5389, #3c1053)!important; in MuiButton-root. It will make mui button background gradient color.

Today, I am going to show you, how to make mui button background gradient color in react js.

Installation

Install the following packages to use mui gradient color in react js.

npm

npm install @mui/material @emotion/react @emotion/styled

yarn

yarn add @mui/material @emotion/react @emotion/styled

MUI material make mui button background gradient color example.

The below code is an example of making mui button background gradient color using mui button.

App.js

import * as React from 'react';
import IconButton from "@mui/material/IconButton";
import SaveIcon from '@mui/icons-material/Save';
import { Button } from "@mui/material";
import "./App.css"

export default function App() {
  return (
    <div>
      <Button variant="contained" startIcon={<SaveIcon />}>Save</Button>
      <IconButton size="large">
      </IconButton>
    </div>
  );
}
.MuiButton-root {
  background: linear-gradient(to right, #ad5389, #3c1053)!important;
}

In the above code example, I have used the @mui/material component and made mui button background gradient color.

Check the output of the above code example.

React, Mui gradient button

All the best 👍

Premium Content

You can get all the below premium content directly in your mail when you subscribe us

Books

Interview Questions

Soon You will get CSS, JavaScript, React Js, and TypeScript So Subscribe to it.

Portfolio Template

View | Get Source Code

Cheat Sheets

Cheat Sheets Books are basically Important useful notes which we use in our day-to-day life.

Related Posts