fix: ambiguous import

This commit is contained in:
Ashley Wulber 2023-09-14 11:51:42 -04:00 committed by Michael Murphy
parent 023d8ad3a0
commit c3ae2c0017

View file

@ -7,13 +7,13 @@ mod button;
pub use self::button::Button; pub use self::button::Button;
pub mod iced; pub mod iced;
pub use iced::Application; pub use self::iced::Application;
pub use iced::Checkbox; pub use self::iced::Checkbox;
pub use iced::Container; pub use self::iced::Container;
pub use iced::ProgressBar; pub use self::iced::ProgressBar;
pub use iced::Rule; pub use self::iced::Rule;
pub use iced::Svg; pub use self::iced::Svg;
pub use iced::Text; pub use self::iced::Text;
mod segmented_button; mod segmented_button;
pub use self::segmented_button::SegmentedButton; pub use self::segmented_button::SegmentedButton;