import icons
Square(color='salmon')
for i in range(0,100,10):
    Square(width=1, color='palevioletred', x=i)
d=icons.Heart(color='red')
for i in range(0,100,15):
    Square(height=3, color='white', y=i)
Square(color='white', width=6)

with animation(duration=0.25):
    d.height=10
    d.width=10

with animation(duration=0.25):
    d.height=100
    d.width=100
with animation(duration=0.3):
    pass

My heart

by noor

Created 5 years, 11 months ago.