Passer au contenu principal
En-tête
Représente une action réussie ou complétée.
import { Checkmark } from 'twenty-ui/display';

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

Coche animée

Représente une icône de coche avec la fonctionnalité d’animation ajoutée.
import { AnimatedCheckmark } from 'twenty-ui/display';

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