Files
twenty/packages/twenty-docs/l/es/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.6 KiB
Plaintext

---
title: Marca de verificación
image: /images/user-guide/tasks/tasks_header.png
---
<Frame>
<img src="/images/user-guide/tasks/tasks_header.png" alt="Header" />
</Frame>
Representa una acción exitosa o completada.
<Tabs>
<Tab title="Usage">
```jsx
import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
```
</Tab>
<Tab title="Props">
Extiende `React.ComponentPropsWithoutRef<'div'>` y acepta todas las propiedades de un elemento `div` regular.
</Tab>
</Tabs>
## Marca de verificación animada
Representa un ícono de marca de verificación con la característica adicional de animación.
<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" | Tipo | Descripción | Predeterminado |
| ----------- | -------- | -------------------------------------------------- | ---------------------------- |
| isAnimating | booleano | Controla si la marca de verificación está animando | falso |
| color | "cadena" | Color de la marca de verificación | |
| duración | número | La duración de la animación en segundos | 0.5 segundos |
| tamaño | número | El tamaño de la marca de verificación | 28 píxeles |
</Tab>
</Tabs>