slint/examples/memory/icons
Tobias Hunger 0139eea4f9 xtask: Fix up license headers
* Keep project related .md files triple licensed as the rest of the
  crate
* Make vtable MIT OR Apache 2.0 (as suggested by @ogoffart)
2023-08-17 08:55:28 +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 xtask: Fix up license headers 2023-08-17 08:55:28 +02:00
tile_logo.png Update logo and colors used in memory example 2022-02-04 14:28:10 +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 CC BY 4.0 (SVG download)

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