The progress bar is one kind of visual representation of content loading.
Read more about when and how to use the Progress Bar component on the website.
yarn add @hig/progress-bar @hig/theme-context @hig/theme-data
import ProgressBar from '@hig/progress-bar';
<ProgressBar />
Use the className
prop to pass in a css class name to the outermost container of the component. The class name will also pass down to most of the other styled elements within the component.
ProgressBar also has a stylesheet
prop that accepts a function wherein you can modify ProgressBar's styles. For instance
import ProgressBar from '@hig/progress-bar';
function YourComponent() {
// ...
const customStylesheet = (styles, themeData) => ({
...styles,
wrapper: {
...styles.wrapper,
backgroundColor: themeData["colorScheme.surfaceLevel100Color"]
}
});
return (
<ProgressBar stylesheet={customStylesheet} />
);
}