This commit is contained in:
2026-08-11 11:05:28 +07:00
parent aabccdf099
commit e77cfe29d9
4 changed files with 9 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M23 12L15.9289 19.0711L14.5147 17.6569L20.1716 12L14.5147 6.34317L15.9289 4.92896L23 12ZM3.82843 12L9.48528 17.6569L8.07107 19.0711L1 12L8.07107 4.92896L9.48528 6.34317L3.82843 12Z"></path></svg>

After

Width:  |  Height:  |  Size: 285 B

+2
View File
@@ -52,6 +52,7 @@ pub enum CustomIconName {
Filter,
GlobalOn,
GlobalOff,
GitClone,
}
impl IconNamed for CustomIconName {
@@ -61,6 +62,7 @@ impl IconNamed for CustomIconName {
CustomIconName::Filter => "icons/filter.svg",
CustomIconName::GlobalOn => "icons/global-on.svg",
CustomIconName::GlobalOff => "icons/global-off.svg",
CustomIconName::GitClone => "icons/git-clone.svg",
}
.into()
}