slint/examples/memory/icons
2021-08-17 22:38:16 +02:00
..
at-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
at.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
balance-scale-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
balance-scale.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
bicycle-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
bicycle.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
bus-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
bus.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
cloud-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
cloud.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
cogs-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
cogs.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
motorcycle-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
motorcycle.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00
README.md Respect the aspect ratio in the memory game 2020-12-08 16:37:20 +01:00
tile_logo.png Memory game: add the logo on the hidden tile 2020-12-08 20:21:56 +01:00
video-solid.svg Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
video.png Fix the aspect ratio of images by keeping them square 2020-12-08 16:40:17 +01:00

The icons originate from Font-Awesome font ( http://fontawesome.io ) and licensed under the OFL

https://fontawesome.com/license/free

The PNGs were generated using

for f in *.svg; do rsvg-convert -a -w 128 -h 128 -o `echo $f | sed -e "s,-solid\.svg,.png,"` $f; done
for f in *.png; do convert -background none -gravity center -extent 128x128 $f  $f; done