diff options
| author | pml68 <contact@pml68.dev> | 2025-04-28 10:57:42 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-28 10:58:49 +0200 |
| commit | 9dfb469d1ba975e59f39f3bb799b019204315784 (patch) | |
| tree | 246271173fad2464170fec0fa5d09504b346c1c7 /src/icon.rs | |
| parent | refactor(material_theme)!: make `Theme` an enum with `Custom` variant (diff) | |
| download | iced-builder-9dfb469d1ba975e59f39f3bb799b019204315784.tar.gz | |
feat: switch to modified `iced_fontello` for custom Theme support
Diffstat (limited to '')
| -rw-r--r-- | src/icon.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/icon.rs b/src/icon.rs index 3fbeb83..d218943 100644 --- a/src/icon.rs +++ b/src/icon.rs @@ -1,8 +1,10 @@ // Generated automatically by iced_fontello at build time. // Do not edit manually. Source: ../fonts/icons.toml // 915ea6b0646871c0f04350f201f27f28881b61f3bd6ef292a415d67a211739c1 -use iced::widget::{text, Text}; use iced::Font; +use iced::widget::text; + +use crate::widget::Text; pub const FONT: &[u8] = include_bytes!("../fonts/icons.ttf"); |
