UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines (17 loc) 871 B
'use client'; import '@ui5/webcomponents/dist/ProgressIndicator.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * 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! [ProgressIndicator UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/ProgressIndicator) | [Repository](https://github.com/UI5/webcomponents) */ const ProgressIndicator = withWebComponent('ui5-progress-indicator', ['accessibleName', 'displayValue', 'value', 'valueState'], ['hideValue'], [], []); ProgressIndicator.displayName = 'ProgressIndicator'; export { ProgressIndicator };