How to make mui radio button with image in react js?
August 04, 2023Hi Friends 👋,
Welcome To aGuideHub!
To make mui radio button with image in react js, you can use icon={<img src="./radiobutton.png" alt="Checked Radio Icon" width="30px" height="30px"/>}
in radio. it will make mui radio button with image in React JS.
Today, I am going to show you, How to make mui radio button with image in react js.
Installation
Install the following packages to use mui radio 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 radio.
- Use the radio 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 radio.
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, { useState } from "react";
import {
Radio,
RadioGroup,
FormControlLabel,
FormControl
} from "@mui/material";
Step 3: Use the Radio Component.
You can use the Radio
component in your react js. For example, Radio buttons let users make a mutually exclusive choice. Only one selection is allowed from the available set of options. You can use <Radio/>
component make a radio in react js.
<Radio
icon={
<img
src="./radiobutton.png"
alt="Checked Radio Icon"
width="30px"
height="30px"
/>
} // Icon when unchecked
checkedIcon={
<img
src="./radiobutto98.png"
alt="Radio Icon"
width="30px"
height="30px"
/>
} // Icon when checked
/>
MUI material make mui radio button with icon example.
The below code is an example, you need to import Radio
Component. Then, you can create a Radio button and you can use icon={<img src="./radiobutton.png" alt="Checked Radio Icon" width="30px" height="30px"/>}
in radio. then it will make mui radio button with image in react js.
App.js
import React, { useState } from "react";
import {
Radio,
RadioGroup,
FormControlLabel,
FormControl
} from "@mui/material";
const RadioWithIcon = () => {
const [selectedValue, setSelectedValue] = useState("option1"); // Initialize with your default value
const handleChange = (event) => {
setSelectedValue(event.target.value);
};
return (
<FormControl component="fieldset">
<RadioGroup
aria-label="icon-radio"
name="icon-radio"
value={selectedValue}
onChange={handleChange}
>
<FormControlLabel
value="option1"
control={
<Radio
icon={
<img
src="./radiobutton.png"
alt="Checked Radio Icon"
width="30px"
height="30px"
/>
} // Icon when unchecked
checkedIcon={
<img
src="./radiobutto98.png"
alt="Radio Icon"
width="30px"
height="30px"
/>
} // Icon when checked
/>
}
label="Option 1"
/>
<FormControlLabel
value="option2"
control={
<Radio
icon={
<img
src="./radiobutton.png"
alt="Checked Radio Icon"
width="30px"
height="30px"
/>
} // Icon when unchecked
checkedIcon={
<img
src="./radiobutto98.png"
alt="Radio Icon"
width="30px"
height="30px"
/>
} // Icon when checked
/>
}
label="Option 2"
/>
</RadioGroup>
</FormControl>
);
};
export default RadioWithIcon;
In the above code example, I have used the @mui/material
component and made mui radio button with image in react js.
Check the output of the above code example.
Here, we are provided code sandbox links for the above program make mui radio button with image in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍