Skip to main content
Header
Represents a successful or completed action.
  • Usage
  • Props
import { Checkmark } from 'twenty-ui/display';

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

Animated Checkmark

Represents a checkmark icon with the added feature of animation.
  • Usage
  • Props
import { AnimatedCheckmark } from 'twenty-ui/display';

export const MyComponent = () => {
  return (
    <AnimatedCheckmark
      isAnimating={true}
      color="green"
      duration={0.5}
      size={30}
    />
  );
};