guise-ui 0.2.3

A Mantine-inspired component library for gpui, Zed's GPU-accelerated UI framework.
Documentation
//! Feedback: components that communicate state to the user.
//!
//! - [`Alert`] — an inline colored callout.
//! - [`Loader`] — an animated busy indicator.
//! - [`Progress`] — a horizontal completion bar.
//! - [`Notification`] — an elevated toast card.

mod alert;
mod loader;
mod notification;
mod progress;
mod ringprogress;
mod toast;

pub use alert::Alert;
pub use loader::{Loader, LoaderVariant};
pub use notification::Notification;
pub use progress::Progress;
pub use ringprogress::RingProgress;
pub use toast::ToastStack;