summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/svg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/src/widget/svg.rs')
-rw-r--r--graphics/src/widget/svg.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/widget/svg.rs b/graphics/src/widget/svg.rs
index 621f1a85..64a2b461 100644
--- a/graphics/src/widget/svg.rs
+++ b/graphics/src/widget/svg.rs
@@ -1,9 +1,9 @@
//! Display vector graphics in your application.
use crate::backend::{self, Backend};
use crate::{Primitive, Rectangle, Renderer};
-use iced_native::svg;
+use iced_native::widget::svg;
-pub use iced_native::svg::{Handle, Svg};
+pub use iced_native::widget::svg::{Handle, Svg};
impl<B> svg::Renderer for Renderer<B>
where