summaryrefslogtreecommitdiffstats
path: root/pure/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-22 23:40:08 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-22 23:40:08 +0700
commitef4c79ea23e86fec9a8ad0fb27463296c14400e5 (patch)
tree5eba98d4a4e76a2da71076a1330f4293ec41e52f /pure/src/widget.rs
parent9157f5b9e47713d5920a4e262c25a993998b312f (diff)
downloadiced-ef4c79ea23e86fec9a8ad0fb27463296c14400e5.tar.gz
iced-ef4c79ea23e86fec9a8ad0fb27463296c14400e5.tar.bz2
iced-ef4c79ea23e86fec9a8ad0fb27463296c14400e5.zip
Implement `pure` version of `Svg` widget
Diffstat (limited to 'pure/src/widget.rs')
-rw-r--r--pure/src/widget.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/pure/src/widget.rs b/pure/src/widget.rs
index be73c5fa..8200f9a7 100644
--- a/pure/src/widget.rs
+++ b/pure/src/widget.rs
@@ -9,6 +9,7 @@ pub mod radio;
pub mod rule;
pub mod scrollable;
pub mod slider;
+pub mod svg;
pub mod text_input;
pub mod toggler;
pub mod tree;
@@ -32,6 +33,7 @@ pub use rule::Rule;
pub use scrollable::Scrollable;
pub use slider::Slider;
pub use space::Space;
+pub use svg::Svg;
pub use text::Text;
pub use text_input::TextInput;
pub use toggler::Toggler;