How to make mui paper with arrow in react js?
November 29, 2023Hi Friends 👋,
Welcome To aGuideHub!
To make mui paper with arrow in react js, you can use <LabelImportantIcon />
in paper. it will make mui paper with arrow in React JS.
Today, I am going to show you, How to make mui paper with arrow in react js
Installation
Install the following packages to use mui snackbar alert 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 snackbar alert.
- Use the snackbar alert 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 snackbar alert.
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 Paper from "@mui/material/Paper";
import LabelImportantIcon from "@mui/icons-material/LabelImportant";
import { makeStyles } from "@mui/styles";
import "./styles.css";
Step 3: Use the snackbar alert Component.
A snackbar alert screen is an animated placeholder that simulates the layout of a website while data is being loaded.
<Paper elevation={3} className={classes.paper}>
<div className="arrow">
<LabelImportantIcon />
</div>
<p>This is a custom Paper component with an arrow.</p>
</Paper>
MUI material make mui paper with arrow example.
The below code is an example, you need to import snackbar alert
Component. Then, you can use <LabelImportantIcon />
in paper. Then it will make mui paper with arrow in react js.
App.js
import React from "react";
import Paper from "@mui/material/Paper";
import LabelImportantIcon from "@mui/icons-material/LabelImportant";
import { makeStyles } from "@mui/styles";
import "./styles.css";
const useStyles = makeStyles((theme) => ({
paper: {
position: "relative",
width: 200,
height: 90,
},
}));
const CustomPaperWithArrow = () => {
const classes = useStyles();
return (
<Paper elevation={3} className={classes.paper}>
<div className="arrow">
<LabelImportantIcon />
</div>
<p>This is a custom Paper component with an arrow.</p>
</Paper>
);
};
export default CustomPaperWithArrow;
App.css
.arrow {
position: absolute;
top: 40%;
right: -20px;
}
In the above code example, I have used the @mui/material
component and make mui paper with arrow in react js.
Here, we are provided code sandbox links for the above program make mui paper with arrow in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍