"use client"; import React from "react"; import { Progress } from "@/subframe/components/Progress"; function ProgressExample() { return <Progress value={30} />; } export default ProgressExample;
value
number
30
Use the value prop to set the value of the progress bar. It should be a number between 0 and 100.
View code