From 8cc0c3b469a5146deca9d7fd72de1c73ddd28b72 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Tue, 2 Jan 2024 11:35:37 -0500 Subject: [PATCH] chore: export IconFallback --- src/widget/icon/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/icon/mod.rs b/src/widget/icon/mod.rs index 93442d42..0542505c 100644 --- a/src/widget/icon/mod.rs +++ b/src/widget/icon/mod.rs @@ -7,7 +7,7 @@ mod named; use std::ffi::OsStr; use std::sync::Arc; -pub use named::Named; +pub use named::{IconFallback, Named}; mod handle; pub use handle::{from_path, from_raster_bytes, from_raster_pixels, from_svg_bytes, Data, Handle};