# SyncIndicator

When active, indicates a syncing state.

## Usage <a href="#usage" id="usage"></a>

```jsx
import { Main, SyncIndicator } from '@aragon/ui'

function App() {
  return (
    <Main>
      <SyncIndicator />
    </Main>
  )
}
```

## Props <a href="#props" id="props"></a>

#### `visible` <a href="#visible" id="visible"></a>

| TYPE      | DEFAULT VALUE |
| --------- | ------------- |
| `Boolean` | `true`        |

Set to `true` to display the indicator.

#### `label` <a href="#label" id="label"></a>

| TYPE   | DEFAULT VALUE     |
| ------ | ----------------- |
| `Node` | `"Syncing data…"` |

The label displayed by the indicator.

Note: the “folded hands” emoji 🙏 will be appended to the label. Use `children` if you wish to override this behavior.

#### `children` <a href="#children" id="children"></a>

| TYPE   | DEFAULT VALUE |
| ------ | ------------- |
| `Node` | None          |

Use `children` to override `label` and its emoji decoration.

#### `shift` <a href="#shift" id="shift"></a>

| TYPE     | DEFAULT VALUE |
| -------- | ------------- |
| `Number` | `0`           |

Use this property to shift the position of the sync indicator from its “end position” (right on left to right languages).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://legacy-docs.aragon.org/developers/tools/aragonui/feedback/syncindicator.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
