# Progress Bar [component-header:sl-progress-bar] Progress bars are used to show the status of an ongoing operation. ```html preview ``` ## Examples ### Custom Height Use the `--height` custom property to set the progress bar's height. ```html preview ``` ### Labels Use the `label` attribute to label the progress bar and tell assistive devices how to announce it. ```html preview ``` ### Showing Values Use the default slot to show a value. ```html preview 50%
``` ### Indeterminate The `indeterminate` attribute can be used to inform the user that the operation is pending, but its status cannot currently be determined. In this state, `value` is ignored and the label, if present, will not be shown. ```html preview ``` [component-metadata:sl-progress-bar]