
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
@chakra-ui/progress
Advanced tools
@chakra-ui/progress is a component library for creating progress indicators in React applications. It provides a set of customizable and accessible progress components that can be used to display the progress of a task or process.
Progress Bar
The Progress component is used to display a linear progress bar. The 'value' prop determines the progress percentage.
import { Progress } from '@chakra-ui/react';
function ProgressBarExample() {
return <Progress value={80} />;
}
Circular Progress
The CircularProgress component is used to display a circular progress indicator. The 'value' prop determines the progress percentage.
import { CircularProgress } from '@chakra-ui/react';
function CircularProgressExample() {
return <CircularProgress value={60} />;
}
Custom Color Progress
The Progress component can be customized with different color schemes using the 'colorScheme' prop.
import { Progress } from '@chakra-ui/react';
function CustomColorProgressExample() {
return <Progress value={50} colorScheme='green' />;
}
Animated Progress
The Progress component can be animated and striped using the 'hasStripe' and 'isAnimated' props.
import { Progress } from '@chakra-ui/react';
function AnimatedProgressExample() {
return <Progress value={70} hasStripe isAnimated />;
}
React-Bootstrap provides a set of progress components that are similar to @chakra-ui/progress. It offers both linear and circular progress indicators with customizable styles. However, React-Bootstrap is part of a larger UI framework and may require additional setup for theming and customization.
Material-UI offers a comprehensive set of progress components, including linear and circular progress indicators. It provides extensive customization options and follows the Material Design guidelines. Material-UI is a larger library with a wide range of UI components, making it a good choice for projects that need a consistent design system.
Ant Design (antd) includes progress components that are similar to those in @chakra-ui/progress. It offers linear and circular progress indicators with various customization options. Ant Design is known for its rich set of components and design consistency, making it suitable for enterprise-level applications.
The Progress component is an element that displays the progress status for a task that takes a long time or consists of several steps.
yarn add @chakra-ui/progress
# or
npm i @chakra-ui/progress
import {
Progress,
ProgressLabel,
CircularProgress,
CircularProgressLabel,
} from "@chakra-ui/progress"
<Progress value={50} />
<Progress value={50} />
Pass the color
prop to apply any color that exists in the theme to the
progress
<Progress color="pink" value={20} />
Pass the size
prop to increase the height of the progress
<Progress size="sm" value={20} />
<Progress size="lg" value={20} />
Pass the value
for the progress as undefined
to put the progress component
in the indeterminate state
<Progress margin="20px" size="xs" value={undefined} />
Pass the hasStripe
prop to have a beautiful gradient to create a striped
effect on the progress
<Progress color="green" hasStripe value={20} />
Pass the isAnimated
prop combined with the hasStrip
prop to get a
beautifully animated progress
<Progress hasStripe isAnimated value={20} />
Use the ProgressLabel
utility component to have a label for the progress
component
<Progress value={60}>
<ProgressLabel>60%</ProgressLabel>
</Progress>
<CircularProgress value={50} />
Pass the size
prop to change the size of the circular progress. You can also
pass the thickness
prop to change the thickness of the circular progress. The
thickness
prop is a fractional value whose actual value is determined by the
size
of the circular progress. In this example the circular progress will have
a thickness of 30px. 50% of size (120px) => 30px
<CircularProgress size="120px" thickness={0.5} value={60} />
Pass the color
prop to apply any color that exists in the theme
<CircularProgress color="pink" value={20} />
Use the CircularProgressLabel
utility component to have a label for the
circular progress
<CircularProgress value={60}>
<CircularProgressLabel>60%</CircularProgressLabel>
</CircularProgress>
The CircularProgress and the Spinner may seem to serve the same purpose, but
semantically, they don't. In the indeterminate
state they have the following
difference.
It is used to denote the progress of a determinate operation. Take for example an image upload operation:
CircularProgress also comes with the aria-* attributes to make its progress value accessible to screenreaders.
It is more of a “presentational” loading indicator you can use on a page or a component, while it’s loading, or before it renders. It doesn't have any semantic meaning.
To give meaning to a Spinner/loading indicator, ARIA standards require that you
mark the area of the component/page that’s loading with aria-busy=true
.
FAQs
Progress bar component for Chakra UI
We found that @chakra-ui/progress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.