Usage
import { Progress } from "lambda-ui-components";
export default function App() {
return (
<Progress
value={65}
color="primary"
variant="bar"
/>
);
}Progress component displays the completion status of a task or process.
Experiment with all the properties of the Progress component in real time.
Optional label to display with the progress.
The progress value (0-100).
Color scheme of the progress.
Visual style of the progress.
Size of the progress.
If true, displays the percentage value.
If true, shows an indeterminate loading animation.
import { Progress } from "lambda-ui-components";
export default function App() {
return (
<Progress
value={65}
color="primary"
variant="bar"
/>
);
}Prop | Default | Type |
|---|---|---|
value | undefined | number |
variant | "bar" | "bar" | "circle" |
color | "primary" | "neutral" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" |
size | "small" | "tiny" | "small" | "medium" | "large" |
showValue | false | boolean |
indeterminate | false | boolean |
label | undefined | string |