tessera_ui_basic_components/pipelines/checkmark.rs
1//! Checkmark pipeline module.
2//!
3//! This module provides rendering pipelines and commands for drawing checkmark graphics in Tessera UI components.
4//!
5//! # Example
6//!
7//! ```
8//! use tessera_ui_basic_components::pipelines::checkmark::CheckmarkCommand;
9//! use tessera_ui_basic_components::pipelines::checkmark::CheckmarkPipeline;
10//! // Use CheckmarkPipeline and CheckmarkCommand in your rendering logic.
11//! ```
12
13mod command;
14mod pipeline;
15
16/// Command for rendering a checkmark shape in UI components.
17pub use command::CheckmarkCommand;
18
19/// Pipeline for rendering checkmark graphics.
20pub use pipeline::CheckmarkPipeline;