//! Action handler macro for input components.
//!
//! Provides a macro to generate action handlers with a disabled check,
//! reducing boilerplate for repeated on_action patterns.
/// Macro to generate action handlers with disabled check.
///
/// # Example
/// ```ignore
/// .on_action(action_handler!(state, disabled, Backspace, backspace))
/// ```