|
Linear Progress
A horizontal progress bar with percentage display
LOCALHOST:3000
[======== ] 75%
NORMAL100%
API Reference
| Prop | Type | Required | Description |
|---|---|---|---|
| value | number | YES | Current progress value |
| max | number | - | Maximum value (default: 100) |
| animated | boolean | - | Enable animation |
InstallationBASH
npx siddcn add progress-linearUsageTSX
import { LinearProgress } from 'siddcn';
export default function App() {
return <LinearProgress value={75} max={100} />;
}