diff --git a/src/icons/images/back_24px.png b/src/icons/images/back_24px.png new file mode 100644 index 000000000..7ba5754cb Binary files /dev/null and b/src/icons/images/back_24px.png differ diff --git a/src/icons/images/back_24px@2x.png b/src/icons/images/back_24px@2x.png new file mode 100644 index 000000000..09ef56fe3 Binary files /dev/null and b/src/icons/images/back_24px@2x.png differ diff --git a/src/icons/images/forward_24px.png b/src/icons/images/forward_24px.png new file mode 100644 index 000000000..009bab19f Binary files /dev/null and b/src/icons/images/forward_24px.png differ diff --git a/src/icons/images/forward_24px@2x.png b/src/icons/images/forward_24px@2x.png new file mode 100644 index 000000000..eef5d55ee Binary files /dev/null and b/src/icons/images/forward_24px@2x.png differ diff --git a/src/icons/svg/back_24px.svg b/src/icons/svg/back_24px.svg new file mode 100644 index 000000000..7ec916b19 --- /dev/null +++ b/src/icons/svg/back_24px.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/svg/forward_24px.svg b/src/icons/svg/forward_24px.svg new file mode 100644 index 000000000..f41bb8791 --- /dev/null +++ b/src/icons/svg/forward_24px.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/svg/make_png.sh b/src/icons/svg/make_png.sh new file mode 100755 index 000000000..32f5d777c --- /dev/null +++ b/src/icons/svg/make_png.sh @@ -0,0 +1,17 @@ +#!/bin/bash -e + +output=../images + +for svg_file in *.svg; do + + png_file=${output}/${svg_file/.svg/.png} + png_file_2x=${output}/${svg_file/.svg/@2x.png} + + echo "Converting $svg_file to $png_file .." + inkscape -o ${png_file} ${svg_file} -d 96 -C + + echo "Converting $svg_file to $png_file_2x .." + inkscape -o ${png_file_2x} ${svg_file} -d 192 -C + +done +