Update icons in rust
Updated icons - Diagnostic states - Sidebar icons (project, contacts) - Navigation arrows
This commit is contained in:
parent
d1361f7dfc
commit
4ca4449394
3 changed files with 7 additions and 7 deletions
|
@ -101,7 +101,7 @@ impl View for DiagnosticIndicator {
|
|||
let mut summary_row = Flex::row();
|
||||
if self.summary.error_count > 0 {
|
||||
summary_row.add_children([
|
||||
Svg::new("icons/error-solid-14.svg")
|
||||
Svg::new("icons/Icon16CircleXMark.svg")
|
||||
.with_color(style.icon_color_error)
|
||||
.constrained()
|
||||
.with_width(style.icon_width)
|
||||
|
@ -117,7 +117,7 @@ impl View for DiagnosticIndicator {
|
|||
|
||||
if self.summary.warning_count > 0 {
|
||||
summary_row.add_children([
|
||||
Svg::new("icons/warning-solid-14.svg")
|
||||
Svg::new("icons/Icon16TriangleExclamation.svg")
|
||||
.with_color(style.icon_color_warning)
|
||||
.constrained()
|
||||
.with_width(style.icon_width)
|
||||
|
@ -138,7 +138,7 @@ impl View for DiagnosticIndicator {
|
|||
|
||||
if self.summary.error_count == 0 && self.summary.warning_count == 0 {
|
||||
summary_row.add_child(
|
||||
Svg::new("icons/no-error-solid-14.svg")
|
||||
Svg::new("icons/Icon16CircleCheck.svg")
|
||||
.with_color(style.icon_color_ok)
|
||||
.constrained()
|
||||
.with_width(style.icon_width)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue