Fix icon paths

Marshall Bowers created

Change summary

crates/storybook2/src/collab_panel.rs | 4 ++--
crates/storybook2/src/workspace.rs    | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

crates/storybook2/src/collab_panel.rs 🔗

@@ -131,9 +131,9 @@ impl CollabPanel {
                 div().flex().h_full().gap_1().items_center().child(
                     svg()
                         .path(if expanded {
-                            "icons/radix/caret-down.svg"
+                            "icons/caret_down.svg"
                         } else {
-                            "icons/radix/caret-up.svg"
+                            "icons/caret_up.svg"
                         })
                         .w_3p5()
                         .h_3p5()

crates/storybook2/src/workspace.rs 🔗

@@ -218,7 +218,7 @@ impl Titlebar {
                                 // .fill(theme.lowest.base.pressed.background)
                                 .child(
                                     svg()
-                                        .path("icons/microphone.svg")
+                                        .path("icons/mic.svg")
                                         .size_3p5()
                                         .fill(theme.lowest.base.default.foreground),
                                 ),
@@ -238,7 +238,7 @@ impl Titlebar {
                                 // .fill(theme.lowest.base.pressed.background)
                                 .child(
                                     svg()
-                                        .path("icons/radix/speaker-loud.svg")
+                                        .path("icons/speaker-loud.svg")
                                         .size_3p5()
                                         .fill(theme.lowest.base.default.foreground),
                                 ),
@@ -258,7 +258,7 @@ impl Titlebar {
                                 // .fill(theme.lowest.base.pressed.background)
                                 .child(
                                     svg()
-                                        .path("icons/radix/desktop.svg")
+                                        .path("icons/desktop.svg")
                                         .size_3p5()
                                         .fill(theme.lowest.base.default.foreground),
                                 ),
@@ -290,7 +290,7 @@ impl Titlebar {
                         )
                         .child(
                             svg()
-                                .path("icons/caret_down_8.svg")
+                                .path("icons/caret_down.svg")
                                 .w_2()
                                 .h_2()
                                 .fill(theme.lowest.variant.default.foreground),