How to make mui icon with text in react js?
January 24, 2024Hi Friends π,
Welcome To aGuideHub!
To make mui icon with text in react js, you can use the Chip
tag with the label
attribute. It will make mui icon with text in React JS.
Today, I am going to show you, How to make mui icon with text in react js
Installation
Install the following packages to make mui icon with text button 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 icon button.
- Use the icon button 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 icon button.
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 * as React from "react";
import { loadCSS } from "fg-loadcss";
import { ThemeProvider, createTheme } from "@mui/material/styles";
import Stack from "@mui/material/Stack";
import Icon from "@mui/material/Icon";
import MdPhone from "@mui/icons-material/Phone";
import Chip from "@mui/material/Chip";
Step 3: Use the icon button Component.
Each Material icon also has a βthemeβ: Filled (default), Outlined, Rounded, Two-tone, and Sharp. To import the icon component with a theme other than the default, append the theme name to the icon name.
<Stack direction="row" spacing={2}>
<ThemeProvider theme={theme}>
<Chip icon={<MdPhone />} label="Call me" />
<Chip icon={<Icon className="fas fa-phone-alt" />} label="Call me" />
</ThemeProvider>
</Stack>
MUI material make mui icon with text example.
The below code is an example, you need to import icon
Component. Then, you can use the Chip
tag with the label
attribute. Then it will make mui icon with text in react js.
App.js
import * as React from "react";
import { loadCSS } from "fg-loadcss";
import { ThemeProvider, createTheme } from "@mui/material/styles";
import Stack from "@mui/material/Stack";
import Icon from "@mui/material/Icon";
import MdPhone from "@mui/icons-material/Phone";
import Chip from "@mui/material/Chip";
const theme = createTheme({
components: {
MuiIcon: {
styleOverrides: {
root: {
// Match 24px = 3 * 2 + 1.125 * 16
boxSizing: "content-box",
padding: 3,
fontSize: "1.125rem",
},
},
},
},
});
export default function FontAwesomeIconSize() {
React.useEffect(() => {
const node = loadCSS(
"https://use.fontawesome.com/releases/v5.14.0/css/all.css",
// Inject before JSS
document.querySelector("#font-awesome-css") || document.head.firstChild
);
return () => {
node.parentNode.removeChild(node);
};
}, []);
return (
<Stack direction="row" spacing={2}>
<ThemeProvider theme={theme}>
<Chip icon={<MdPhone />} label="Call me" />
<Chip icon={<Icon className="fas fa-phone-alt" />} label="Call me" />
</ThemeProvider>
</Stack>
);
}
In the above code example, I have used the @mui/material
component and make mui icon with text in react js.
Here, we are provided code sandbox links for the above program make mui icon with text in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best π