> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Checkmark

<Frame>
  <img src="https://mintcdn.com/twenty/GMeQVDsw5ST_LXpE/images/user-guide/tasks/tasks_header.png?fit=max&auto=format&n=GMeQVDsw5ST_LXpE&q=85&s=4c4e26ebbb9b40e541a945a9cda7c28a" alt="Header" width="1440" height="680" data-path="images/user-guide/tasks/tasks_header.png" />
</Frame>

Represents a successful or completed action.

<Tabs>
  <Tab title="Usage">
    ```jsx theme={null}
    import { Checkmark } from 'twenty-ui/display';

    export const MyComponent = () => {
      return <Checkmark />;
    };
    ```
  </Tab>

  <Tab title="Props">
    Extends `React.ComponentPropsWithoutRef<'div'>` and accepts all the props of a regular `div` element.
  </Tab>
</Tabs>

## Animated Checkmark

Represents a checkmark icon with the added feature of animation.

<Tabs>
  <Tab title="Usage">
    ```jsx theme={null}
    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       | Type    | Description                                 | Default     |
    | ----------- | ------- | ------------------------------------------- | ----------- |
    | isAnimating | boolean | Controls whether the checkmark is animating | false       |
    | color       | string  | Color of the checkmark                      |             |
    | duration    | number  | The duration of the animation in seconds    | 0.5 seconds |
    | size        | number  | The size of the checkmark                   | 28 pixels   |
  </Tab>
</Tabs>
