Files
twenty/packages/twenty-docs/l/tr/twenty-ui/display/checkmark.mdx
T
Félix Malfait 3dd858c91e i18n - docs translations (#16774)
Created by Github action

Pulls the latest documentation translations from Crowdin for all
supported languages:
- French (fr)
- Arabic (ar)  
- Czech (cs)
- German (de)
- Spanish (es)
- Italian (it)
- Japanese (ja)
- Korean (ko)
- Portuguese (pt)
- Romanian (ro)
- Russian (ru)
- Turkish (tr)
- Chinese (zh-CN)

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-23 14:26:11 +01:00

59 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Onay işareti
image: /images/user-guide/tasks/tasks_header.png
---
<Frame>
<img src="/images/user-guide/tasks/tasks_header.png" alt="Başlık" />
</Frame>
Başarılı veya tamamlanmış bir işlemi temsil eder.
<Tabs>
<Tab title="Kullanım">
```jsx
import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
```
</Tab>
<Tab title="Özellikler">
`React.ComponentPropsWithoutRef<'div'>` öğesini genişletir ve normal bir `div` elemanının tüm özelliklerini kabul eder.
</Tab>
</Tabs>
## Animasyonlu Onay İşareti
Animasyon özelliği eklenmiş bir onay işareti simgesini temsil eder.
<Tabs>
<Tab title="Kullanım">
```jsx
import { AnimatedCheckmark } from 'twenty-ui/display';
export const MyComponent = () => {
return (
<AnimatedCheckmark
isAnimating={true}
color="green"
duration={0.5}
size={30}
/>
);
};
```
</Tab>
<Tab title="Özellikler">
| Özellikler | Tür | Açıklama | Varsayılan |
| ----------- | ------- | -------------------------------------------------------- | ---------- |
| isAnimating | boolean | Onay işaretinin animasyonlu olup olmadığını kontrol eder | yanlış |
| renk | dize | Onay işaretinin rengi | |
| süre | sayı | Animasyonun süresi, saniye cinsinden | 0.5 saniye |
| boyut | sayı | Onay işaretinin boyutu | 28 piksel |
</Tab>
</Tabs>