From f5228695a2fcdecd1da9071d477ee34855783b29 Mon Sep 17 00:00:00 2001
From: Héctor Ramón Jiménez <hector0193@gmail.com>
Date: Thu, 6 Feb 2020 01:24:40 +0100
Subject: Implement `ProgressBar` widget in `iced_web`

---
 web/src/widget.rs | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'web/src/widget.rs')

diff --git a/web/src/widget.rs b/web/src/widget.rs
index e5481243..025cf22f 100644
--- a/web/src/widget.rs
+++ b/web/src/widget.rs
@@ -21,6 +21,7 @@ pub mod button;
 pub mod checkbox;
 pub mod container;
 pub mod image;
+pub mod progress_bar;
 pub mod radio;
 pub mod scrollable;
 pub mod slider;
@@ -46,6 +47,7 @@ pub use checkbox::Checkbox;
 pub use column::Column;
 pub use container::Container;
 pub use image::Image;
+pub use progress_bar::ProgressBar;
 pub use radio::Radio;
 pub use row::Row;
 pub use space::Space;
-- 
cgit