Files
twenty/packages/twenty-docs/l/cs/twenty-ui/display/checkmark.mdx
T
github-actions[bot] 001c2097a3 i18n - docs translations (#18231)
Created by Github action

<!-- mintlify-editor-comments:start -->
Mintlify
---
0 threads from 0 users in Mintlify

- No unresolved comments
<!-- mintlify-editor-comments:end -->

<!-- mintlify-comment-->

<a
href="https://dashboard.mintlify.com/twenty/twenty/editor/i18n-docs?source=pr_comment"
target="_blank" rel="noopener noreferrer"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-dark.svg"><source
media="(prefers-color-scheme: light)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg"><img
src="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg"
alt="Open in Mintlify Editor"></picture></a>

<!-- /mintlify-comment -->

Co-authored-by: github-actions <github-actions@twenty.com>
2026-02-25 16:50:28 +01:00

74 lines
1.5 KiB
Plaintext

---
title: Zaškrtnutí
image: /images/user-guide/tasks/tasks_header.png
---
<Frame>
<img src="/images/user-guide/tasks/tasks_header.png" alt="Hlavička" />
</Frame>
Představuje úspěšnou nebo dokončenou akci.
<Tabs>
<Tab title="Použití">
```jsx
import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
```
</Tab>
<Tab title="Vlastnosti">
Rozšiřuje `React.ComponentPropsWithoutRef<'div'>` a přijímá všechny vlastnosti běžného prvku `div`.
</Tab>
</Tabs>
## Animované zaškrtnutí
Představuje ikonu zaškrtnutí s přidanou funkcí animace.
<Tabs>
<Tab title="Použití">
```jsx
import { AnimatedCheckmark } from 'twenty-ui/display';
export const MyComponent = () => {
return (
<AnimatedCheckmark
isAnimating={true}
color="green"
duration={0.5}
size={30}
/>
);
};
```
</Tab>
<Tab title="Vlastnosti">
| Vlastnosti | Typ | Popis | Výchozí |
| ---------- | ------------------ | --------------------------------- | ----------- |
| animuje | booleovská hodnota | Určuje, zda se zaškrtnutí animuje | nepravdivé |
| barva | řetězec | Barva zaškrtnutí | |
| trvání | číslo | Doba trvání animace v sekundách | 0,5 sekundy |
| velikost | číslo | Velikost zaškrtnutí | 28 pixelů |
</Tab>
</Tabs>