Function freya::prelude::ProgressBar

pub fn ProgressBar(_: ProgressBarProps) -> Option<VNode>
Expand description

ProgressBar component.

Props

See ProgressBarProps.

Styling

Inherits the ProgressBarTheme theme.

Example

fn app() -> Element {
    rsx!(
        ProgressBar {
            progress: 75.0
        }
    )
}