diff --git a/core/assets/model_r/amount_smaller.png b/core/assets/model_r/amount_smaller.png new file mode 100644 index 0000000000..aeef73c16b Binary files /dev/null and b/core/assets/model_r/amount_smaller.png differ diff --git a/core/assets/model_r/param_smaller.png b/core/assets/model_r/param_smaller.png new file mode 100644 index 0000000000..bec578ebd2 Binary files /dev/null and b/core/assets/model_r/param_smaller.png differ diff --git a/core/assets/model_r/user_smaller.png b/core/assets/model_r/user_smaller.png new file mode 100644 index 0000000000..df61c6c360 Binary files /dev/null and b/core/assets/model_r/user_smaller.png differ diff --git a/core/embed/rust/src/ui/model_tr/res/amount_smaller.toif b/core/embed/rust/src/ui/model_tr/res/amount_smaller.toif new file mode 100644 index 0000000000..68c5a2cb4f Binary files /dev/null and b/core/embed/rust/src/ui/model_tr/res/amount_smaller.toif differ diff --git a/core/embed/rust/src/ui/model_tr/res/param_smaller.toif b/core/embed/rust/src/ui/model_tr/res/param_smaller.toif new file mode 100644 index 0000000000..6c846e6b51 Binary files /dev/null and b/core/embed/rust/src/ui/model_tr/res/param_smaller.toif differ diff --git a/core/embed/rust/src/ui/model_tr/res/user_smaller.toif b/core/embed/rust/src/ui/model_tr/res/user_smaller.toif new file mode 100644 index 0000000000..4cccc15c8a Binary files /dev/null and b/core/embed/rust/src/ui/model_tr/res/user_smaller.toif differ diff --git a/core/embed/rust/src/ui/model_tr/theme.rs b/core/embed/rust/src/ui/model_tr/theme.rs index 4db64101de..2a4f742a95 100644 --- a/core/embed/rust/src/ui/model_tr/theme.rs +++ b/core/embed/rust/src/ui/model_tr/theme.rs @@ -43,7 +43,7 @@ pub const ICON_ARROW_UP: IconAndName = pub const ICON_ARROW_DOWN: IconAndName = IconAndName::new(include_res!("model_tr/res/arrow_down.toif"), "arrow_down"); // 10*6 pub const ICON_AMOUNT: IconAndName = - IconAndName::new(include_res!("model_tr/res/amount.toif"), "amount"); // 10*10 + IconAndName::new(include_res!("model_tr/res/amount_smaller.toif"), "amount"); // 8*8 pub const ICON_BIN: IconAndName = IconAndName::new(include_res!("model_tr/res/bin.toif"), "bin"); // 10*10 pub const ICON_CANCEL_OUTLINE: IconAndName = IconAndName::new( include_res!("model_tr/res/cancel_for_outline.toif"), @@ -61,13 +61,14 @@ pub const ICON_LOCK: IconAndName = IconAndName::new(include_res!("model_tr/res/l pub const ICON_NEXT_PAGE: IconAndName = IconAndName::new(include_res!("model_tr/res/next_page.toif"), "next_page"); // 10*8 pub const ICON_PARAM: IconAndName = - IconAndName::new(include_res!("model_tr/res/param.toif"), "param"); // 10*10 + IconAndName::new(include_res!("model_tr/res/param_smaller.toif"), "param"); // 7*8 pub const ICON_PREV_PAGE: IconAndName = IconAndName::new(include_res!("model_tr/res/prev_page.toif"), "prev_page"); // 8*10 pub const ICON_SUCCESS: IconAndName = IconAndName::new(include_res!("model_tr/res/success.toif"), "success"); pub const ICON_TICK: IconAndName = IconAndName::new(include_res!("model_tr/res/tick.toif"), "tick"); // 10*10 -pub const ICON_USER: IconAndName = IconAndName::new(include_res!("model_tr/res/user.toif"), "user"); // 10*10 +pub const ICON_USER: IconAndName = + IconAndName::new(include_res!("model_tr/res/user_smaller.toif"), "user"); // 8*8 pub const ICON_WALLET: IconAndName = IconAndName::new(include_res!("model_tr/res/wallet.toif"), "wallet"); // 10*10 pub const ICON_WARNING: IconAndName =