Are you sure?
Do you want to delete “Valintine” permanently? You will not be able to undo this action.
Square(width=100, height=100, color = 'lavender') import icons my_heart = icons.Heart(color = ['pink', 'red', 'pink', 'red', 'pink', 'red']) my_text = Text("Happy Valentine's Day!" ) with animation(duration=3): my_heart.color = ['red', 'pink'] my_heart.rotation = 180 with animation(duration=3): my_heart.rotation = 0 my_heart.color = ['pink', 'red', 'pink', 'red', 'pink', 'red'] with animation(duration=3): my_heart.color = ['yellow', 'blue'] with animation(duration=3): my_heart.color = ['white', 'pink'] with animation(duration=6): pass