Files
twenty/packages/twenty-docs/l/de/twenty-ui/display/checkmark.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

70 lines
1.4 KiB
Plaintext

---
title: Häkchen
image: /images/user-guide/tasks/tasks_header.png
---
<Frame>
<img src="/images/user-guide/tasks/tasks_header.png" alt="Header" />
</Frame>
Stellt eine erfolgreiche oder abgeschlossene Aktion dar.
<Tabs>
<Tab title="Usage">
```jsx
import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
```
</Tab>
<Tab title="Props">
Erweitert `React.ComponentPropsWithoutRef<'div'>` und akzeptiert alle Eigenschaften eines regulären `div`-Elements.
</Tab>
</Tabs>
## Animiertes Häkchen
Stellt ein Häkchen-Symbol mit der zusätzlichen Funktion der Animation dar.
<Tabs>
<Tab title="Usage">
```jsx
import { AnimatedCheckmark } from 'twenty-ui/display';
export const MyComponent = () => {
return (
<AnimatedCheckmark
isAnimating={true}
color="green"
duration={0.5}
size={30}
/>
);
};
```
</Tab>
<Tab title="Props">
| Props | Typ | Beschreibung | Standard |
| ----------- | ------------ | ------------------------------------- | ------------ |
| isAnimating | boolesch | Steuert, ob das Häkchen animiert wird | falsch |
| farbe | Zeichenkette | Farbe des Häkchens | |
| Dauer | nummer | Die Dauer der Animation in Sekunden | 0,5 Sekunden |
| größe | nummer | Die Größe des Häkchens | 28 Pixel |
</Tab>
</Tabs>