# Progress Use to visually represent the completion of a task or process. ```tsx import { reactExtension, Progress, } from '@shopify/ui-extensions-react/checkout'; export default reactExtension( 'purchase.checkout.block.render', () => , ); function Extension() { return ( ); } ``` ```js import {extension, Progress} from '@shopify/ui-extensions/checkout'; export default extension('purchase.checkout.block.render', (root) => { const baseProgress = root.createComponent(Progress, { accessibilityLabel: 'Loading', }); root.appendChild(baseProgress); }); ``` ## ProgressProps ### ProgressProps ### accessibilityLabel value: `string` A label to use for the Progress that will be used for buyers using assistive technologies like screen readers. It will also be used to replace the animated loading indicator when buyers prefer reduced motion. ### id value: `string` A unique identifier for the component. ### max value: `number` Define the maximum limit of the progress element. It must have a value greater than 0 and be a valid floating point number. ### tone value: `Tone` Set the color of the progress bar. ### value value: `number` Specify how much of the task that has been completed. It must be a valid floating point number between 0 and max, or between 0 and 1 if max is omitted. When undefined, the progress bar is indeterminate; this indicates that an activity is ongoing with no indication of how long it is expected to take. ## Related - [Spinner](spinner) ## Examples Use to visually represent the completion of a task or process. In a determinate state, [TextBlock](../titles-and-text/textblock) or [Text](../titles-and-text/text) components can be used to communicate what the progress bar is tracking, and to set clear expectations about the current progress. ```jsx import { reactExtension, BlockStack, Grid, Progress, Text, TextBlock, } from '@shopify/ui-extensions-react/checkout'; export default reactExtension( 'purchase.checkout.footer.render-after', () => , ); function Extension() { const label = 'Queue process'; return ( {label} 45% completed Estimated wait time: 4 minutes ); } ``` ```js import { extension, BlockStack, Grid, Progress, Text, TextBlock, } from '@shopify/ui-extensions/checkout'; export default extension( 'purchase.checkout.block.render', (root) => { const label = 'Queue process'; const progress = root.createComponent( BlockStack, null, [ root.createComponent( Grid, { columns: ['fill', 'auto'], }, [ root.createComponent( Text, null, label, ), root.createComponent( Text, { appearance: 'subdued', }, '45% completed', ), ], ), root.createComponent(Progress, { value: 45, max: 100, accessibilityLabel: label, }), root.createComponent( TextBlock, { appearance: 'subdued', }, 'Estimated wait time: 4 minutes', ), ], ); root.appendChild(progress); }, ); ```