leptos-use/src/core/size.rs
2023-06-05 00:02:13 +01:00

5 lines
104 B
Rust

#[derive(Copy, Clone, Default, PartialEq)]
pub struct Size {
pub width: f64,
pub height: f64,
}