iced_box/
lib.rs

1#[cfg(feature = "icon")]
2mod icons;
3
4#[cfg(feature = "icon")]
5pub mod icon {
6    //!
7    //! Provides Lucide and Google Material style icons 
8    //! 
9    //! ![](https://raw.githubusercontent.com/iced-box/iced-box/main/examples/icons/image.png)
10    /// 
11    ///
12    ///  Provides Lucide style icons 
13    #[cfg(feature = "lucide_icons")]
14    pub use crate::icons::lucide;
15        
16    /// Provides Google Material style icons 
17    #[cfg(feature = "material_icons")]
18    pub use crate::icons::material;
19    
20    /// Alias for the result of the font load command
21    #[cfg(feature = "icon")]
22    pub type LoadingResult = Result<(), iced::font::Error>;
23}