How to make mui button background gradient color in react js?
December 06, 2022Hi 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.
All the best 👍