@synergy-design-system/react
Version:
React wrappers for the Synergy Design System
21 lines (20 loc) • 955 B
TypeScript
import Component from '@synergy-design-system/components/components/progress-bar/progress-bar.component.js';
/**
* @summary Progress bars are used to show the status of an ongoing operation.
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-progress-bar--docs
* @status stable
* @since 2.0
*
* @slot - A label to show inside the progress indicator.
*
* @csspart base - The component's base wrapper.
* @csspart indicator - The progress bar's indicator.
* @csspart label - The progress bar's label.
*
* @cssproperty --height - The progress bar's height.
* @cssproperty --track-color - The color of the track.
* @cssproperty --indicator-color - The color of the indicator.
* @cssproperty --label-color - The color of the label.
* @cssproperty --speed - The speed of the progress bar when in indeterminate state.
*/
export declare const SynProgressBar: import("@lit/react").ReactWebComponent<Component, {}>;