Progress

Displays the progress of a task.
Properties
value
Example
Source Code
Installation
"use client";

import React from "react";
import { Progress } from "@/subframe/components/Progress";

function ProgressExample() {
  return <Progress value={30} />;
}

export default ProgressExample;

Props

Progress
Indicator
Prop
Type
Default
Additional info
value
number
30

Examples

Value

Use the value prop to set the value of the progress bar. It should be a number between 0 and 100.