How to change color of mui chip delete icon in react js?
July 06, 2023Hi Friends 👋,
Welcome To aGuideHub!
To change color of mui chip delete icon in react js, you can use color: "red"
in delete icon. it will change color of mui chip delete icon in React JS.
Today, I am going to show you, how to change color of mui chip delete icon in react js.
Installation
Install the following packages to use mui chip in react js.
npm
npm install @mui/material @emotion/react @emotion/styled
yarn
yarn add @mui/material @emotion/react @emotion/styled
Table of contents
- Install MUI and create a new React app.
- Import Material-UI chip.
- Use the chip Component
Step 1: Install MUI and create a new React app.
First you have to install the React project. You should use create-react-app
command to create a new React project.
npx create-react-app my-app
cd my-app
npm start
Step 2: Import Material-UI chip.
After installing MUI
, you have to import your React component. To do this, add the following line to the top of your component file.
import React from "react";
import { Chip, makeStyles } from "@material-ui/core";
import DeleteIcon from "@mui/icons-material/Delete";
Step 3: Use the chip Component
You can use the chip
component in your react js. For example, Chips allow users to enter information, make selections, filter content, or initiate actions. You can use <chip>
component make a chip in react js.
<Chip
label="My Chip"
onDelete={() => {}}
deleteIcon={<DeleteIcon className={classes.chipDeleteIcon} />}
/>
MUI material change color of mui chip delete icon example.
The below code is an example, We define a custom style hook useStyles
using MakeStyles
and set the color property of the ChipDeleteIcon
class to the desired color, and to change color of mui chip delete icon in react js.
App.js
import React from "react";
import { Chip, makeStyles } from "@material-ui/core";
import DeleteIcon from "@mui/icons-material/Delete";
const useStyles = makeStyles((theme) => ({
chipDeleteIcon: {
color: "red" // Replace with your desired color
}
}));
const App = () => {
const classes = useStyles();
return (
<Chip
label="My Chip"
onDelete={() => {}}
deleteIcon={<DeleteIcon className={classes.chipDeleteIcon} />}
/>
);
};
export default App;
In the above code example, I have used the @mui/material
component and changed of mui chip delete icon in react js.
Check the output of the above code example.
Here, we are provided code sandbox links for the above program change color of mui chip delete icon in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍