//! Rusty-TUI Library
//!
//! This library provides simple components for creating Text User Interfaces (TUIs) in Rust.
//! It includes basic elements such as labels and input boxes to enhance CLI applications.
// Module for handling labels // Module for handling input boxes
pub use InputBox;
pub use Label;
pub use Border;