8cadd00d34
Created by Github action --------- Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: github-actions <github-actions@twenty.com>
70 lines
1.6 KiB
Plaintext
70 lines
1.6 KiB
Plaintext
---
|
|
title: סימן וי
|
|
image: /images/user-guide/tasks/tasks_header.png
|
|
---
|
|
|
|
<Frame>
|
|
<img src="/images/user-guide/tasks/tasks_header.png" alt="Header" />
|
|
</Frame>
|
|
|
|
מייצג פעולה מוצלחת או שהושלמה.
|
|
|
|
<Tabs>
|
|
<Tab title="Usage">
|
|
|
|
```jsx
|
|
import { Checkmark } from 'twenty-ui/display';
|
|
|
|
export const MyComponent = () => {
|
|
return <Checkmark />;
|
|
};
|
|
```
|
|
|
|
</Tab>
|
|
|
|
<Tab title="Props">
|
|
|
|
מאריך `React.ComponentPropsWithoutRef<'div'>` ומקבל את כל הפרמטרים של אלמנט `div` רגיל.
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|
|
|
|
## סימן וי מונפש
|
|
|
|
מייצג סמל של סימן וי עם תכונת הנפשה נוספת.
|
|
|
|
<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">
|
|
|
|
| תכונות | סוג | תיאור | ברירת מחדל |
|
|
| ------------ | ------- | ------------------------------ | ------------------------- |
|
|
| בתהליך הנפשה | בוליאני | שולט האם סימן הוי בתהליך הנפשה | שקר |
|
|
| צבע | string | צבע סימן הוי | |
|
|
| משך זמן | מספר | משך ההנפשה בשניות | 0.5 שניות |
|
|
| גודל | מספר | גודל סימן הוי | 28 פיקסלים |
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|