xengui 0.2.1

wgpu based, modern and high-performance GUI library.
Documentation
// SPDX-License-Identifier: Apache-2.0
pub mod background;
pub mod color;
pub mod edges;
pub mod length;
pub mod properties;
pub mod size;
pub mod style_builder;
pub mod typography;
pub use font_style;
pub use font_weight;
pub use letter_spacing;
pub use line_height;
pub use text_align;
pub use text_decoration;

pub use background::Background;
pub use color::Color;
pub use edges::Edges;
pub use font_style::FontStyle;
pub use font_weight::FontWeight;
pub use length::Length;
pub use letter_spacing::LetterSpacing;
pub use line_height::LineHeight;
pub use properties::Style;
pub use size::Size;
pub use style_builder::StyleBuilder;
pub use text_align::TextAlign;
pub use text_decoration::TextDecoration;
pub use typography::*;