UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines (17 loc) 820 B
'use client'; import '@ui5/webcomponents/dist/ProgressIndicator.js'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * Shows the progress of a process in a graphical way. To indicate the progress, * the inside of the component is filled with a color. * * ### Responsive Behavior * You can change the size of the Progress Indicator by changing its `width` or `height` CSS properties. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) */ const ProgressIndicator = withWebComponent('ui5-progress-indicator', ['accessibleName', 'displayValue', 'value', 'valueState'], ['hideValue'], [], []); ProgressIndicator.displayName = 'ProgressIndicator'; export { ProgressIndicator };