Tweak reexports

This commit is contained in:
Olivier FAURE 2025-03-29 10:54:50 +01:00
parent f5a9ab394a
commit 1b70937ed1
2 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@ impl BackgroundColor {
}
}
// TODO - Split BackgroundGradient (widget propertiy) and Gradient, GradientShape
// (subtypes of that property) into separate modules.
#[derive(Clone, Debug)]
pub struct BackgroundGradient {
pub gradient: Gradient,

View File

@ -16,7 +16,7 @@ mod border_width;
mod corner_radius;
mod padding;
pub use background_color::*;
pub use background_color::{BackgroundColor, BackgroundGradient, Gradient, GradientShape};
pub use border_color::BorderColor;
pub use border_width::BorderWidth;
pub use corner_radius::CornerRadius;