siddcn logo
siddcn
|

Linear Progress

A horizontal progress bar with percentage display

LOCALHOST:3000
[========  ] 75%
NORMAL100%

API Reference

PropTypeRequiredDescription
valuenumberYESCurrent progress value
maxnumber-Maximum value (default: 100)
animatedboolean-Enable animation
InstallationBASH
npx siddcn add progress-linear
UsageTSX
import { LinearProgress } from 'siddcn';

export default function App() {
  return <LinearProgress value={75} max={100} />;
}