1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-03 13:22:33 +00:00
trezor-firmware/core/embed/rust/src/ui/component/mod.rs
Martin Milata 4d60c10330 feat(core/rust): add support for T1 UI
[no changelog]
2021-11-24 15:36:34 +01:00

10 lines
245 B
Rust

mod base;
pub mod empty;
pub mod label;
pub mod text;
pub use base::{Child, Component, Event, EventCtx, Never, TimerToken};
pub use empty::Empty;
pub use label::{Label, LabelStyle};
pub use text::{LineBreaking, PageBreaking, Text, TextLayout};