radix_leptos_progress/lib.rs
1//! Leptos port of [Radix Progress](https://www.radix-ui.com/primitives/docs/components/progress).
2//!
3//! Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
4//!
5//! See [the Rust Radix book](https://radix.rustforweb.org/primitives/components/progress.html) for more documentation.
6//!
7//! See [`@radix-ui/react-progress`](https://www.npmjs.com/package/@radix-ui/react-progress) for the original package.
8
9mod progress;
10
11pub use progress::*;