From 664251f3f5c7b76f69a97683af1468094bba887f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 14 May 2022 01:47:55 +0200 Subject: Draft first-class `Theme` support RFC: https://github.com/iced-rs/rfcs/pull/6 --- style/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'style/src/lib.rs') diff --git a/style/src/lib.rs b/style/src/lib.rs index e4556f67..d9c3259e 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -21,4 +21,7 @@ pub mod rule; pub mod scrollable; pub mod slider; pub mod text_input; +pub mod theme; pub mod toggler; + +pub use theme::Theme; -- cgit