Skip to content

Circular Progress

RingProgress displays a circular SVG-based progress indicator with determinate and indeterminate modes.

Basic Usage

import { RingProgress } from "@paramanu/feedback-react"
export default function App() {
return <RingProgress value={60} />
}
<div class="pm-ring-progress pm-ring-progress--md pm-ring-progress--primary" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
<svg class="pm-ring-progress__svg" viewBox="0 0 44 44" width="48" height="48">
<circle class="pm-ring-progress__track" cx="22" cy="22" r="20" fill="none" stroke-width="4"/>
<circle class="pm-ring-progress__fill" cx="22" cy="22" r="20" fill="none" stroke-width="4"/>
</svg>
</div>