Files
twenty/packages/twenty-docs/l/cs/twenty-ui/progress-bar.mdx
T
github-actions[bot] 8cadd00d34 i18n - translations (#15799)
Created by Github action

---------

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: github-actions <github-actions@twenty.com>
2025-11-13 16:34:00 +01:00

78 lines
2.6 KiB
Plaintext

---
title: Zpětná vazba
image: /images/user-guide/emails/emails_header.png
---
<Frame>
<img src="/images/user-guide/emails/emails_header.png" alt="Header" />
</Frame>
Udává průběh nebo odpočítávání a pohybuje se zprava doleva.
<Tabs>
<Tab title="Usage">
```jsx
import { ProgressBar } from "twenty-ui/feedback";
export const MyComponent = () => {
return (
<ProgressBar
duration={6000}
delay={0}
easing="easeInOut"
barHeight={10}
barColor="#4bb543"
autoStart={true}
/>
);
};
```
</Tab>
<Tab title="Props">
| Vlastnosti | Typ | Popis | Výchozí |
| ---------- | ------------------ | ------------------------------------------------------------------------------------ | --------- |
| trvání | číslo | The total duration of the progress bar animation in milliseconds | 3 |
| zpoždění | číslo | Zpoždění spuštění animace indikačního pruhu v milisekundách | 0 |
| easing | textový řetězec | Easing function for the progress bar animation | easeInOut |
| barHeight | číslo | Výška pruhu v pixelech | 24 |
| barvaPruhu | textový řetězec | Barva pruhu | gray80 |
| autoStart | booleovská hodnota | Pokud `true`, animace indikačního pruhu se automaticky spustí při načtení komponenty | `pravda` |
</Tab>
</Tabs>
## Kruhový indikátor průběhu
Udává průběh úkolu, často používané na načítacích obrazovkách nebo v oblastech, kde chcete uživateli sdělovat probíhající procesy.
<Tabs>
<Tab title="Usage">
```jsx
import { CircularProgressBar } from "@/ui/feedback/progress-bar/components/CircularProgressBar";
export const MyComponent = () => {
return <CircularProgressBar size={80} barWidth={6} barColor="green" />;
};
```
</Tab>
<Tab title="Props">
| Vlastnosti | Typ | Popis | Výchozí |
| ---------- | --------------- | ------------------------------------ | ------------- |
| velikost | číslo | Velikost kruhového indikačního pruhu | 50 |
| barWidth | číslo | Šířka čáry indikačního pruhu | 5 |
| barvaPruhu | textový řetězec | Barva indikačního pruhu | současnáBarva |
</Tab>
</Tabs>