summaryrefslogtreecommitdiffstats
path: root/icons
diff options
context:
space:
mode:
Diffstat (limited to 'icons')
-rw-r--r--icons/res/upvote.svg4
-rw-r--r--icons/res/upvoted.svg4
-rw-r--r--icons/src/lib.rs4
3 files changed, 11 insertions, 1 deletions
diff --git a/icons/res/upvote.svg b/icons/res/upvote.svg
new file mode 100644
index 0000000..25d1c93
--- /dev/null
+++ b/icons/res/upvote.svg
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" stroke="black">
+ <path d="M 10 21 v -12 h -4 l 6 -6 l 6 6 h -4 v 12 z" />
+</svg>
diff --git a/icons/res/upvoted.svg b/icons/res/upvoted.svg
new file mode 100644
index 0000000..5041744
--- /dev/null
+++ b/icons/res/upvoted.svg
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#FF8F00" stroke="#FF8F00">
+ <path d="M 10 21 v -12 h -4 l 6 -6 l 6 6 h -4 v 12 z" />
+</svg>
diff --git a/icons/src/lib.rs b/icons/src/lib.rs
index 355e674..0728295 100644
--- a/icons/src/lib.rs
+++ b/icons/src/lib.rs
@@ -43,7 +43,9 @@ macro_rules! icons {
icons! {
NOTIFICATIONS => "notifications.svg",
NOTIFICATIONS_SOME => "notifications-some.svg",
- PERSON => "person.svg"
+ PERSON => "person.svg",
+ UPVOTE => "upvote.svg",
+ UPVOTED => "upvoted.svg"
}
pub use icons::*;