mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
Use a custom logo version there over the `real` one to keep the example self-contained in its directory. |
||
|---|---|---|
| .. | ||
| at-solid.svg | ||
| at.png | ||
| balance-scale-solid.svg | ||
| balance-scale.png | ||
| bicycle-solid.svg | ||
| bicycle.png | ||
| bus-solid.svg | ||
| bus.png | ||
| cloud-solid.svg | ||
| cloud.png | ||
| cogs-solid.svg | ||
| cogs.png | ||
| motorcycle-solid.svg | ||
| motorcycle.png | ||
| README.md | ||
| tile_logo.png | ||
| video-solid.svg | ||
| video.png | ||
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