How to change font size of mui icon in react js?

Hi Friends πŸ‘‹,

Welcome To aGuideHub!

To change font size of mui icon in react js, you can use sx={{ fontSize: 40 }}. It will change font size of mui icon in React JS.

Today, I am going to show you, How to change font size of mui icon in react js

Installation

Install the following packages to change font size of mui icon 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.
  • Use the icon 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.

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 AccessAlarmIcon from "@mui/icons-material/AccessAlarm";

Step 3: Use the icon 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.

<div>
  <AccessAlarmIcon sx={{ fontSize: 40 }} />
</div>

MUI material change font size of mui icon example.

The below code is an example, you need to import icon Component. Then, you can use sx={{ fontSize: 40 }}. Then it will change font size of mui icon in react js.

App.js

import React from "react";
import AccessAlarmIcon from "@mui/icons-material/AccessAlarm";

const App = () => {
  return (
    <div>
      <AccessAlarmIcon sx={{ fontSize: 40 }} />
    </div>
  );
};

export default App;

In the above code example, I have used the @mui/material component and change font size of mui icon in react js.

React, font, size, of, mui, icon

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