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

---
title: Marca de Verificação
image: /images/user-guide/tasks/tasks_header.png
---
<Frame>
<img src="/images/user-guide/tasks/tasks_header.png" alt="Header" />
</Frame>
Representa uma ação bem-sucedida ou concluída.
<Tabs>
<Tab title="Usage">
```jsx
import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
```
</Tab>
<Tab title="Props">
Estende `React.ComponentPropsWithoutRef<'div'>` e aceita todas as propriedades de um elemento `div` regular.
</Tab>
</Tabs>
## Marca de Verificação Animada
Representa um ícone de marca de verificação com o recurso adicional de animação.
<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 | Descrição | Padrão |
| ----------- | ---------------------------------------- | ------------------------------------------------ | ------------ |
| isAnimating | booleano | Controla se a marca de verificação está animando | falso |
| cor | Nome opcional para estilização adicional | Cor da marca de verificação | |
| duração | número | A duração da animação em segundos | 0,5 segundos |
| tamanho | número | O tamanho da marca de verificação | 28 pixels |
</Tab>
</Tabs>