Appearance
Function: progress()
ts
function progress(props: ProgressProps): Element;Defined in: src/UI/blocks/progress.tsx:29
Progress component for loading.
Parameters
| Parameter | Type | Description |
|---|---|---|
props | ProgressProps | Configuration object |
Returns
Element
Examples
Basic usage
progress();Usage with optional label
progress({
label: 'Loading data...',
});