diff options
author | 2019-12-15 06:28:44 +0100 | |
---|---|---|
committer | 2019-12-15 06:28:44 +0100 | |
commit | 6ba2461445e68127ef686d2b9d79eb7a09f42a86 (patch) | |
tree | b77ba5aeef7363adfb5d27f4443d7e9eaba7bc0c /src | |
parent | 09707f29fcf7fbd71570a43db214921043427c3f (diff) | |
download | iced-6ba2461445e68127ef686d2b9d79eb7a09f42a86.tar.gz iced-6ba2461445e68127ef686d2b9d79eb7a09f42a86.tar.bz2 iced-6ba2461445e68127ef686d2b9d79eb7a09f42a86.zip |
Update `Svg` documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/native.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/native.rs b/src/native.rs index 8c86ec7e..c6ddf25b 100644 --- a/src/native.rs +++ b/src/native.rs @@ -81,16 +81,16 @@ pub mod widget { } pub mod svg { - //! Display icons in your user interface. - pub use iced_winit::svg::Svg; + //! Display vector graphics in your user interface. + pub use iced_winit::svg::{Handle, Svg}; } pub use iced_winit::{Checkbox, Radio, Text}; #[doc(no_inline)] pub use { - button::Button, image::Image, scrollable::Scrollable, - slider::Slider, svg::Svg, text_input::TextInput, + button::Button, image::Image, scrollable::Scrollable, slider::Slider, + svg::Svg, text_input::TextInput, }; /// A container that distributes its contents vertically. |