
- Usage
- Props
Animasyonlu Onay İşareti
Animasyon özelliği eklenmiş bir onay işareti simgesini temsil eder.- Usage
- Props

import { Checkmark } from 'twenty-ui/display';
export const MyComponent = () => {
return <Checkmark />;
};
import { AnimatedCheckmark } from 'twenty-ui/display';
export const MyComponent = () => {
return (
<AnimatedCheckmark
isAnimating={true}
color="green"
duration={0.5}
size={30}
/>
);
};
Bu sayfa yararlı mıydı?