Progress
A Progress component visually indicates the completion status of a task. Built on top of heroui-native Progress.
Demo
Demo Coming Soon
Progress examples will be available soon.
Usage
import { NProgress } from '@nayan-ui/react';const Progress = () => {return <NProgress value={50} />;};export default Progress;
Attributes
| Name | Type | Default | Details |
|---|---|---|---|
| value | number | Required | Progress value (0-100). |
| className | string | ' ' | You can customise progress container by passing tailwind classes. |
| indicatorClassName | string | ' ' | You can customise progress indicator by passing tailwind classes. |