How to make mui circular progress with gradient in react js?
October 17, 2023Hi Friends 👋,
Welcome To aGuideHub!
To make mui circular progress with gradient in react js, you can use <linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
in <svg>
. it will make mui circular progress with gradient in React JS.
Today, I am going to show you, How to make mui circular progress with gradient in react js
Installation
Install the following packages to use mui progress in react js.
npm
npm install @material-ui/core
yarn
yarn add @material-ui/core
Table of contents
- Install MUI and create a new React app.
- Import Material-UI progress.
- Use the progress 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 progress.
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 { CircularProgress, makeStyles } from "@material-ui/core";
Step 3: Use the progress Component.
Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates.
<>
<svg width="100" height="100">
<linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
<stop offset="20%" stopColor="#39F" />
<stop offset="90%" stopColor="#F3F" />
</linearGradient>
</svg>
<CircularProgress thickness={4} classes={{ circle: classes.circle }} />
</>
MUI material make mui circular progress with gradient example.
The below code is an example, you need to import progress
Component. Then, you can use <linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
. Then it will make mui circular progress with gradient in react js.
App.js
import React from "react";
import { CircularProgress, makeStyles } from "@material-ui/core";
const useStyles = makeStyles(() => ({
circle: {
stroke: "url(#linearColors)"
}
}));
export default function GradientCircularProgress() {
const classes = useStyles({});
return (
<>
<svg width="100" height="100">
<linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
<stop offset="20%" stopColor="#39F" />
<stop offset="90%" stopColor="#F3F" />
</linearGradient>
</svg>
<CircularProgress thickness={4} classes={{ circle: classes.circle }} />
</>
);
}
In the above code example, I have used the @mui/material
component and make mui circular progress with gradient in react js.
Here, we are provided code sandbox links for the above program make mui circular progress with gradient in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍